diff --git a/api-references/analytics/endpoints/analytics-api.json b/api-references/analytics/endpoints/analytics-api.json index 501d6cf0..ba8e3bb2 100644 --- a/api-references/analytics/endpoints/analytics-api.json +++ b/api-references/analytics/endpoints/analytics-api.json @@ -1,4 +1,15 @@ { + "openapi": "3.0.0", + "info": { + "title": "Analytics Api", + "version": "" + }, + "servers": [ + { + "url": "https://api.sequence.app", + "description": "Analytics" + } + ], "components": { "schemas": { "ErrorWebrpcEndpoint": { @@ -241,7 +252,7 @@ } } }, - "ErrorWebrpcClientDisconnected": { + "ErrorWebrpcClientAborted": { "type": "object", "required": [ "error", @@ -252,7 +263,7 @@ "properties": { "error": { "type": "string", - "example": "WebrpcClientDisconnected" + "example": "WebrpcClientAborted" }, "code": { "type": "number", @@ -260,7 +271,7 @@ }, "msg": { "type": "string", - "example": "client disconnected" + "example": "request aborted by client" }, "cause": { "type": "string" @@ -331,3410 +342,1107 @@ } } }, - "ErrorUnauthorized": { + "AnalyticsProjectType": { + "type": "string", + "description": "Represented as string on the server side", + "enum": [ + "ALL", + "CREATED", + "RELATED" + ] + }, + "DateInterval": { + "type": "string", + "description": "Represented as uint16 on the server side", + "enum": [ + "DAY", + "WEEK", + "MONTH" + ] + }, + "QueryFilter": { "type": "object", - "required": [ - "error", - "code", - "msg", - "status" - ], "properties": { - "error": { - "type": "string", - "example": "Unauthorized" + "projectId": { + "type": "number" }, - "code": { - "type": "number", - "example": 1000 + "ecosystemId": { + "type": "number" }, - "msg": { - "type": "string", - "example": "Unauthorized access" + "startDate": { + "type": "string" }, - "cause": { + "endDate": { "type": "string" }, - "status": { - "type": "number", - "example": 401 + "dateInterval": { + "$ref": "#/components/schemas/DateInterval" + }, + "collections": { + "type": "array", + "description": "[]string", + "items": { + "type": "string" + } + }, + "tokenId": { + "type": "string" + }, + "projectType": { + "$ref": "#/components/schemas/AnalyticsProjectType" } } }, - "ErrorPermissionDenied": { + "Chart": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "value", + "label" ], "properties": { - "error": { - "type": "string", - "example": "PermissionDenied" - }, - "code": { - "type": "number", - "example": 1001 - }, - "msg": { - "type": "string", - "example": "Permission denied" + "value": { + "type": "number" }, - "cause": { + "label": { "type": "string" - }, - "status": { - "type": "number", - "example": 403 } } }, - "ErrorSessionExpired": { + "ChartWithPercentage": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "label", + "total", + "percentage" ], "properties": { - "error": { - "type": "string", - "example": "SessionExpired" - }, - "code": { - "type": "number", - "example": 1002 - }, - "msg": { - "type": "string", - "example": "Session expired" - }, - "cause": { + "label": { "type": "string" }, - "status": { - "type": "number", - "example": 403 + "total": { + "type": "number" + }, + "percentage": { + "type": "number" } } }, - "ErrorMethodNotFound": { + "MultiValueChart": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "value", + "label" ], "properties": { - "error": { - "type": "string", - "example": "MethodNotFound" - }, - "code": { - "type": "number", - "example": 1003 - }, - "msg": { - "type": "string", - "example": "Method not found" + "value": { + "type": "object", + "description": "map", + "additionalProperties": { + "type": "number" + } }, - "cause": { + "label": { "type": "string" - }, - "status": { - "type": "number", - "example": 404 } } }, - "ErrorRequestConflict": { + "QueryResult": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "collection", + "source", + "volumeUSD", + "numTokens", + "numTxns" ], "properties": { - "error": { - "type": "string", - "example": "RequestConflict" - }, - "code": { - "type": "number", - "example": 1004 + "collection": { + "type": "string" }, - "msg": { - "type": "string", - "example": "Conflict with target resource" + "source": { + "type": "string" }, - "cause": { + "tokenId": { "type": "string" }, - "status": { - "type": "number", - "example": 409 + "volumeUSD": { + "type": "number" + }, + "numTokens": { + "type": "number" + }, + "numTxns": { + "type": "number" } } }, - "ErrorServiceDisabled": { + "TokenTransactionData": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "collectionId", + "collectionName", + "tokenId", + "tokenName", + "itemQuantities" ], "properties": { - "error": { - "type": "string", - "example": "ServiceDisabled" + "collectionId": { + "type": "string" }, - "code": { - "type": "number", - "example": 1005 + "collectionName": { + "type": "string" }, - "msg": { - "type": "string", - "example": "Service disabled" + "tokenId": { + "type": "string" }, - "cause": { + "tokenName": { "type": "string" }, - "status": { - "type": "number", - "example": 404 + "itemQuantities": { + "type": "number" } } }, - "ErrorTimeout": { + "TrailsTransactionByMode": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "mode", + "uniqueTransactingUsers", + "paymentsStarted", + "paymentsCompleted", + "completionPercent", + "totalFees", + "totalVolume" ], "properties": { - "error": { - "type": "string", - "example": "Timeout" + "mode": { + "type": "string" }, - "code": { - "type": "number", - "example": 2000 + "uniqueTransactingUsers": { + "type": "number" }, - "msg": { - "type": "string", - "example": "Request timed out" + "paymentsStarted": { + "type": "number" }, - "cause": { - "type": "string" + "paymentsCompleted": { + "type": "number" }, - "status": { - "type": "number", - "example": 408 + "completionPercent": { + "type": "number" + }, + "totalFees": { + "type": "number" + }, + "totalVolume": { + "type": "number" } } }, - "ErrorInvalidArgument": { + "TrailsTransactionByRoute": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "origChainName", + "destChainName", + "uniqueTransactingUsers", + "paymentsStarted", + "paymentsCompleted", + "completionPercent", + "avgTxnDuration", + "gasFees", + "totalFees", + "totalVolume" ], "properties": { - "error": { - "type": "string", - "example": "InvalidArgument" + "origChainName": { + "type": "string" }, - "code": { - "type": "number", - "example": 2001 + "destChainName": { + "type": "string" }, - "msg": { - "type": "string", - "example": "Invalid argument" + "uniqueTransactingUsers": { + "type": "number" }, - "cause": { - "type": "string" + "paymentsStarted": { + "type": "number" }, - "status": { - "type": "number", - "example": 400 + "paymentsCompleted": { + "type": "number" + }, + "completionPercent": { + "type": "number" + }, + "avgTxnDuration": { + "type": "number" + }, + "gasFees": { + "type": "number" + }, + "totalFees": { + "type": "number" + }, + "totalVolume": { + "type": "number" } } }, - "ErrorNotFound": { + "TrailsTransactionByProvider": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "providerSwap", + "providerBridge", + "uniqueTransactingUsers", + "paymentsStarted", + "paymentsCompleted", + "completionPercent", + "avgTxnDuration", + "providerFees", + "totalFees", + "totalVolume" ], "properties": { - "error": { - "type": "string", - "example": "NotFound" + "providerSwap": { + "type": "string" }, - "code": { - "type": "number", - "example": 3000 + "providerBridge": { + "type": "string" }, - "msg": { - "type": "string", - "example": "Resource not found" + "uniqueTransactingUsers": { + "type": "number" }, - "cause": { - "type": "string" + "paymentsStarted": { + "type": "number" }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorUserNotFound": { - "type": "object", - "required": [ - "error", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "UserNotFound" + "paymentsCompleted": { + "type": "number" }, - "code": { - "type": "number", - "example": 3001 + "completionPercent": { + "type": "number" }, - "msg": { - "type": "string", - "example": "User not found" + "avgTxnDuration": { + "type": "number" }, - "cause": { - "type": "string" + "providerFees": { + "type": "number" }, - "status": { - "type": "number", - "example": 400 + "totalFees": { + "type": "number" + }, + "totalVolume": { + "type": "number" } } }, - "ErrorProjectNotFound": { + "TrailsTransactionByCountry": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "country", + "transactingWallets", + "paymentsCompleted", + "completionPercent", + "totalVolume" ], "properties": { - "error": { - "type": "string", - "example": "ProjectNotFound" + "country": { + "type": "string" }, - "code": { - "type": "number", - "example": 3002 + "transactingWallets": { + "type": "number" }, - "msg": { - "type": "string", - "example": "Project not found" + "paymentsCompleted": { + "type": "number" }, - "cause": { - "type": "string" + "completionPercent": { + "type": "number" }, - "status": { - "type": "number", - "example": 400 + "totalVolume": { + "type": "number" } } }, - "ErrorInvalidTier": { + "TrailsTransactionDetail": { "type": "object", "required": [ - "error", - "code", - "msg", - "status" + "date", + "checkoutId", + "country", + "provider", + "hostname", + "originTxHash", + "destTxHash", + "origChainName", + "destChainName", + "origTokenSymbol", + "destTokenSymbol", + "providerFee", + "totalFee", + "totalVolume" ], "properties": { - "error": { - "type": "string", - "example": "InvalidTier" + "date": { + "type": "string" }, - "code": { - "type": "number", - "example": 3003 + "checkoutId": { + "type": "string" }, - "msg": { - "type": "string", - "example": "Invalid subscription tier" + "country": { + "type": "string" }, - "cause": { + "provider": { "type": "string" }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorEmailTemplateExists": { - "type": "object", - "required": [ - "error", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "EmailTemplateExists" + "hostname": { + "type": "string" }, - "code": { - "type": "number", - "example": 3004 + "originTxHash": { + "type": "string" }, - "msg": { - "type": "string", - "example": "Email Template exists" + "destTxHash": { + "type": "string" }, - "cause": { + "origChainName": { "type": "string" }, - "status": { - "type": "number", - "example": 409 + "destChainName": { + "type": "string" + }, + "origTokenSymbol": { + "type": "string" + }, + "destTokenSymbol": { + "type": "string" + }, + "providerFee": { + "type": "number" + }, + "totalFee": { + "type": "number" + }, + "totalVolume": { + "type": "number" } } }, - "ErrorSubscriptionLimit": { + "Analytics_TotalCompute_Request": { "type": "object", - "required": [ - "error", - "code", - "msg", - "status" - ], "properties": { - "error": { - "type": "string", - "example": "SubscriptionLimit" - }, - "code": { - "type": "number", - "example": 3005 - }, - "msg": { - "type": "string", - "example": "Subscription limit reached" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 402 + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ErrorFeatureNotIncluded": { + "Analytics_ComputeByService_Request": { "type": "object", - "required": [ - "error", - "code", - "msg", - "status" - ], "properties": { - "error": { - "type": "string", - "example": "FeatureNotIncluded" - }, - "code": { - "type": "number", - "example": 3006 - }, - "msg": { - "type": "string", - "example": "Feature not included" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 402 + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ErrorInvalidNetwork": { + "Analytics_DailyComputeByType_Request": { "type": "object", - "required": [ - "error", - "code", - "msg", - "status" - ], "properties": { - "error": { - "type": "string", - "example": "InvalidNetwork" - }, - "code": { - "type": "number", - "example": 3007 - }, - "msg": { - "type": "string", - "example": "Invalid network" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ErrorInvitationExpired": { + "Analytics_DailyComputeByService_Request": { "type": "object", - "required": [ - "error", - "code", - "msg", - "status" - ], "properties": { - "error": { - "type": "string", - "example": "InvitationExpired" - }, - "code": { - "type": "number", - "example": 4000 - }, - "msg": { - "type": "string", - "example": "Invitation code is expired" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ErrorAlreadyCollaborator": { + "Analytics_GetOrderbookCollections_Request": { "type": "object", - "required": [ - "error", - "code", - "msg", - "status" - ], "properties": { - "error": { - "type": "string", - "example": "AlreadyCollaborator" - }, - "code": { - "type": "number", - "example": 4001 - }, - "msg": { - "type": "string", - "example": "Already a collaborator" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 409 + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "AuthSessionType": { - "type": "string", - "description": "Represented as uint16 on the server side", - "enum": [ - "PUBLIC", - "WALLET", - "USER", - "ADMIN", - "SERVICE" - ] + "Analytics_CreditsPerDailyActiveUser_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } }, - "SubscriptionTier": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "COMMUNITY", - "DEVELOPER", - "GROWTH", - "PRO", - "ENTERPRISE" - ] + "Analytics_CreditsPerMonthlyActiveUser_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } }, - "ProjectType": { - "type": "string", - "description": "Represented as string on the server side", - "enum": [ - "EMBEDDED_WALLET_REACT", - "EMBEDDED_WALLET_NEXTJS", - "EMBEDDED_WALLET_UNITY", - "EMBEDDED_WALLET_UNREAL", - "MARKETPLACE_STANDALONE", - "MARKETPLACE_REACT", - "MARKETPLACE_UNITY", - "MARKETPLACE_UNREAL", - "SALE_CONTRACT_ERC1155", - "SALE_CONTRACT_ERC721" - ] + "Analytics_WalletsTotal_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } }, - "ResourceType": { - "type": "string", - "description": "Represented as int8 on the server side", - "enum": [ - "CONTRACTS" - ] + "Analytics_WalletsDaily_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } }, - "SubscriptionProvider": { - "type": "string", - "description": "Represented as string on the server side", - "enum": [ - "ADMIN", - "STRIPE", - "GOOGLE" - ] - }, - "CollaboratorAccess": { - "type": "string", - "description": "Represented as uint32 on the server side", - "enum": [ - "NONE", - "READ", - "WRITE", - "ADMIN" - ] - }, - "CollaboratorType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "USER", - "SERVICE_ACCOUNT" - ] - }, - "ContractSourceType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "LINKED", - "DEPLOYED", - "SALE" - ] - }, - "SortOrder": { - "type": "string", - "description": "Represented as uint32 on the server side", - "enum": [ - "DESC", - "ASC" - ] - }, - "PaymentProvider": { - "type": "string", - "description": "Represented as uint16 on the server side", - "enum": [ - "UNKNOWN", - "STRIPE", - "MANUAL" - ] - }, - "PaymentStatus": { - "type": "string", - "description": "Represented as uint16 on the server side", - "enum": [ - "INITIATED", - "PENDING", - "SUCCEEDED", - "FAILED", - "PROCESSED" - ] - }, - "MarketplaceWallet": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "UNIVERSAL", - "EMBEDDED" - ] - }, - "MarketplaceType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "AMM", - "P2P", - "SEQUENCE", - "ORDERBOOK" - ] - }, - "TokenType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "ERC20", - "ERC721", - "ERC1155" - ] - }, - "FileScope": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "LOGO", - "MARKETPLACE", - "AVATAR", - "EMAIL", - "WALLET", - "TOKEN_DIRECTORY" - ] - }, - "EmailTemplateType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "UNKNOWN", - "LOGIN", - "GUARD" - ] - }, - "TaskStatus": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "PENDING", - "PAUSED", - "FAILED", - "COMPLETED", - "DISABLED" - ] - }, - "DateInterval": { - "type": "string", - "description": "Represented as uint16 on the server side", - "enum": [ - "DAY", - "WEEK", - "MONTH" - ] - }, - "OnboardingStep": { - "type": "string", - "description": "Represented as string on the server side", - "enum": [ - "linkOrDeployContract", - "createMarketplace", - "setUpGasTank", - "configureWaas", - "customizeWallet", - "inviteCollaborator", - "cloneGithub", - "copyCredentials", - "customizeMarketplace", - "deployERC721Contract", - "deployERC1155Contract", - "addMarketplaceCollection", - "createCollection", - "customizeCollectible", - "deploySaleContract", - "setSaleSettings", - "addMinterRoleToItems", - "setUpAudienceList" - ] - }, - "WaasTenantState": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "PENDING", - "DEPLOYING", - "READY", - "FAILED" - ] - }, - "TrialType": { - "type": "string", - "description": "Represented as string on the server side", - "enum": [ - "ANALYTICS" - ] - }, - "CustomerTier": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "TIER_1", - "TIER_2", - "TIER_3", - "TIER_4", - "TIER_5" - ] - }, - "Version": { + "Analytics_WalletsMonthly_Request": { "type": "object", - "required": [ - "webrpcVersion", - "schemaVersion", - "schemaHash", - "appVersion" - ], "properties": { - "webrpcVersion": { - "type": "string" - }, - "schemaVersion": { - "type": "string" - }, - "schemaHash": { - "type": "string" - }, - "appVersion": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "RuntimeStatus": { + "Analytics_WalletsByCountry_Request": { "type": "object", - "required": [ - "healthOK", - "startTime", - "uptime", - "ver", - "env", - "branch", - "commitHash", - "networks", - "checks" - ], "properties": { - "healthOK": { - "type": "boolean" - }, - "startTime": { - "type": "string" - }, - "uptime": { - "type": "number" - }, - "ver": { - "type": "string" - }, - "env": { - "type": "string" - }, - "branch": { - "type": "string" - }, - "commitHash": { - "type": "string" - }, - "networks": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "boolean" - } - }, - "checks": { - "$ref": "#/components/schemas/RuntimeChecks" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "RuntimeChecks": { + "Analytics_WalletsByDevice_Request": { "type": "object", - "required": [ - "quotaControl", - "joqueue", - "stripe", - "cloudCommerce" - ], "properties": { - "quotaControl": { - "type": "boolean" - }, - "joqueue": { - "type": "boolean" - }, - "stripe": { - "type": "boolean" - }, - "cloudCommerce": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Configuration": { + "Analytics_WalletsByBrowser_Request": { "type": "object", - "required": [ - "name", - "title", - "chainIds", - "domains" - ], "properties": { - "name": { - "type": "string" - }, - "title": { - "type": "string" - }, - "chainIds": { - "type": "array", - "description": "[]uint64", - "items": { - "type": "number" - } - }, - "domains": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "logoUrl": { - "type": "string" - }, - "logoLightUrl": { - "type": "string" - }, - "titleUrl": { - "type": "string" - }, - "backgroundUrl": { - "type": "string" - }, - "mobileBackgroundUrl": { - "type": "string" - }, - "customCss": { - "type": "string" - }, - "animationUrl": { - "type": "string" - }, - "crispWebsiteId": { - "type": "string" - }, - "learnMoreButton": { - "type": "string" - }, - "learnMoreUrl": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "AuthState": { + "Analytics_WalletsByOS_Request": { "type": "object", - "required": [ - "jwtToken", - "expiresAt", - "address", - "sessionType" - ], "properties": { - "jwtToken": { - "type": "string" - }, - "expiresAt": { - "type": "string" - }, - "address": { - "type": "string" - }, - "sessionType": { - "$ref": "#/components/schemas/AuthSessionType" - }, - "user": { - "$ref": "#/components/schemas/User" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "User": { + "Analytics_WalletsByType_Request": { "type": "object", - "required": [ - "address", - "createdAt", - "updatedAt", - "sysAdmin", - "avatarKey", - "avatarUrl" - ], "properties": { - "address": { - "type": "string" - }, - "email": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "sysAdmin": { - "type": "boolean" - }, - "avatarKey": { - "type": "string" - }, - "avatarUrl": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "UserSettings": { + "Analytics_WalletsTxnSentTotal_Request": { "type": "object", - "required": [ - "freeProjectsLeft", - "totalFreeProjectLimit", - "totalPaidProjects" - ], "properties": { - "freeProjectsLeft": { - "type": "number" - }, - "totalFreeProjectLimit": { - "type": "number" - }, - "totalPaidProjects": { - "type": "number" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "UserOverride": { + "Analytics_WalletsTxnSentDaily_Request": { "type": "object", - "required": [ - "id", - "address", - "extraProjects", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "address": { - "type": "string" - }, - "extraProjects": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Project": { + "Analytics_WalletsTxnSentMonthly_Request": { "type": "object", - "required": [ - "id", - "name", - "ownerAddress", - "ownerAvatarUrl", - "draft", - "logoImageKey", - "logoImageUrl", - "websiteUrl", - "chainIds", - "whitelabel", - "subscriptionTier", - "collaboratorCount", - "onboardingSteps", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "name": { - "type": "string" - }, - "type": { - "$ref": "#/components/schemas/ProjectType" - }, - "ownerAddress": { - "type": "string" - }, - "ownerEmail": { - "type": "string" - }, - "ownerAvatarUrl": { - "type": "string" - }, - "draft": { - "type": "boolean" - }, - "logoImageKey": { - "type": "string" - }, - "logoImageUrl": { - "type": "string" - }, - "websiteUrl": { - "type": "string" - }, - "chainIds": { - "type": "array", - "description": "[]uint64", - "items": { - "type": "number" - } - }, - "whitelabel": { - "type": "string" - }, - "subscriptionTier": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "collaboratorCount": { - "type": "number" - }, - "onboardingSteps": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "boolean" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ResourceFilter": { + "Analytics_WalletsByOrigin_Request": { "type": "object", "properties": { - "contracts": { - "$ref": "#/components/schemas/ContractFilter" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Resource": { + "Analytics_ConnectionsByOrigin_Request": { "type": "object", - "required": [ - "type", - "total", - "detail" - ], "properties": { - "type": { - "$ref": "#/components/schemas/ResourceType" - }, - "total": { - "type": "number" - }, - "detail": { - "type": "array", - "description": "[]ResourceDetail", - "items": { - "$ref": "#/components/schemas/ResourceDetail" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ResourceDetail": { + "Analytics_MarketTxnEventTotal_Request": { "type": "object", - "required": [ - "key", - "count" - ], "properties": { - "key": { - "type": "object" - }, - "count": { - "type": "number" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ProjectSubscription": { + "Analytics_MarketTxnEventDaily_Request": { "type": "object", - "required": [ - "id", - "projectId", - "subscriptionTier", - "provider", - "providerId", - "dateStart" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "subscriptionTier": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "provider": { - "$ref": "#/components/schemas/SubscriptionProvider" - }, - "providerId": { - "type": "string" - }, - "dateStart": { - "type": "string" - }, - "dateEnd": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Collaborator": { + "Analytics_MarketTxnEventMonthly_Request": { "type": "object", - "required": [ - "id", - "projectId", - "type", - "userAddress", - "access", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "type": { - "$ref": "#/components/schemas/CollaboratorType" - }, - "userAddress": { - "type": "string" - }, - "userEmail": { - "type": "string" - }, - "userAvatarUrl": { - "type": "string" - }, - "userAvatarKey": { - "type": "string" - }, - "access": { - "$ref": "#/components/schemas/CollaboratorAccess" - }, - "invitationId": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Contract": { + "Analytics_MarketWalletsTotal_Request": { "type": "object", - "required": [ - "id", - "projectId", - "contractName", - "contractAddress", - "contractType", - "chainId", - "source", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "contractName": { - "type": "string" - }, - "contractAddress": { - "type": "string" - }, - "contractType": { - "type": "string" - }, - "chainId": { - "type": "number" - }, - "source": { - "$ref": "#/components/schemas/ContractSourceType" - }, - "itemsContractAddress": { - "type": "string" - }, - "splitterContractAddresses": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "abi": { - "type": "string" - }, - "bytecode": { - "type": "string" - }, - "bytecodeHash": { - "type": "string" - }, - "audienceId": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ContractFilter": { + "Analytics_MarketWalletsDaily_Request": { "type": "object", "properties": { - "chainId": { - "type": "number" - }, - "contractSourceType": { - "$ref": "#/components/schemas/ContractSourceType" - }, - "contractType": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ContractLink": { + "Analytics_MarketWalletsMonthly_Request": { "type": "object", - "required": [ - "project", - "collaborator" - ], "properties": { - "contract": { - "$ref": "#/components/schemas/Contract" - }, - "project": { - "$ref": "#/components/schemas/Project" - }, - "collaborator": { - "$ref": "#/components/schemas/Collaborator" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "NodeAccount": { + "Analytics_TotalWalletTxnConversionRate_Request": { "type": "object", - "required": [ - "id", - "displayName", - "requestRateLimit", - "requestMonthlyQuota", - "active" - ], "properties": { - "id": { - "type": "number" - }, - "displayName": { - "type": "string" - }, - "requestRateLimit": { - "type": "number" - }, - "requestMonthlyQuota": { - "type": "number" - }, - "active": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "RelayerGasTank": { + "Analytics_DailyWalletTxnConversionRate_Request": { "type": "object", - "required": [ - "id", - "projectId", - "relayerIdMap", - "totalPayments", - "totalUsage" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "relayerIdMap": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "number" - } - }, - "totalPayments": { - "type": "number" - }, - "totalUsage": { - "type": "number" - }, - "timestampUsage": { - "type": "string" - }, - "lastPaymentId": { - "type": "number" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "RelayerGasBalance": { + "Analytics_MonthlyWalletTxnConversionRate_Request": { "type": "object", - "required": [ - "id", - "name", - "chainId", - "currentBalance", - "feeMarkupFactor", - "unlimited" - ], "properties": { - "id": { - "type": "number" - }, - "name": { - "type": "string" - }, - "chainId": { - "type": "number" - }, - "currentBalance": { - "type": "number" - }, - "feeMarkupFactor": { - "type": "number" - }, - "unlimited": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "RelayerGasSponsor": { + "Analytics_DailyNewWallets_Request": { "type": "object", - "required": [ - "id", - "projectId", - "chainId", - "displayName", - "address", - "active", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "displayName": { - "type": "string" - }, - "address": { - "type": "string" - }, - "active": { - "type": "boolean" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "RelayerGasSponsorUsage": { + "Analytics_MonthlyNewWallets_Request": { "type": "object", - "required": [ - "id", - "chainId", - "totalGasUsed", - "totalTxnFees", - "avgGasPrice", - "totalTxns", - "startTime", - "endTime" - ], "properties": { - "id": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "totalGasUsed": { - "type": "number" - }, - "totalTxnFees": { - "type": "number" - }, - "avgGasPrice": { - "type": "number" - }, - "totalTxns": { - "type": "number" - }, - "startTime": { - "type": "string" - }, - "endTime": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "RelayerTransaction": { + "Analytics_TotalNewWallets_Request": { "type": "object", - "required": [ - "txnHash", - "txnNonce", - "txnStatus", - "txnRevertReason", - "requeues", - "queuedAt", - "sentAt", - "minedAt", - "target", - "input", - "txnArgs", - "walletAddress", - "metaTxnNonce", - "gasLimit", - "gasPrice", - "gasUsed", - "gasEstimated", - "usdRate", - "creditsUsed", - "isWhitelisted", - "createdAt", - "updatedAt" - ], - "properties": { - "txnHash": { - "type": "string" - }, - "txnNonce": { - "type": "string" - }, - "metaTxnID": { - "type": "string" - }, - "txnStatus": { - "type": "string" - }, - "txnRevertReason": { - "type": "string" - }, - "requeues": { - "type": "number" - }, - "queuedAt": { - "type": "string" - }, - "sentAt": { - "type": "string" - }, - "minedAt": { - "type": "string" - }, - "target": { - "type": "string" - }, - "input": { - "type": "string" - }, - "txnArgs": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "txnReceipt": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "walletAddress": { - "type": "string" - }, - "metaTxnNonce": { - "type": "string" - }, - "gasLimit": { - "type": "number" - }, - "gasPrice": { - "type": "string" - }, - "gasUsed": { - "type": "number" - }, - "gasEstimated": { - "type": "number" - }, - "gasFeeMarkup": { - "type": "number" - }, - "usdRate": { - "type": "string" - }, - "creditsUsed": { - "type": "number" - }, - "isWhitelisted": { - "type": "boolean" - }, - "gasSponsor": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "IndexerWebhook": { + "Analytics_AverageDAU_Request": { "type": "object", - "required": [ - "id", - "projectId", - "chainId", - "contractAddress", - "eventSig", - "webhookUrl", - "disabled", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "contractAddress": { - "type": "string" - }, - "eventSig": { - "type": "string" - }, - "webhookUrl": { - "type": "string" - }, - "disabled": { - "type": "boolean" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ContractSource": { + "Analytics_RollingStickiness_Request": { "type": "object", - "required": [ - "id", - "uid", - "contractType", - "name", - "description", - "author", - "license", - "audited", - "moreInfoUrl", - "disabled", - "factorySourceUid", - "abi", - "bytecode", - "bytecodeHash", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "uid": { - "type": "string" - }, - "contractType": { - "type": "string" - }, - "projectId": { - "type": "number" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string" - }, - "author": { - "type": "string" - }, - "license": { - "type": "string" - }, - "audited": { - "type": "boolean" - }, - "moreInfoUrl": { - "type": "string" - }, - "disabled": { - "type": "boolean" - }, - "factorySourceUid": { - "type": "string" - }, - "abi": { - "type": "string" - }, - "bytecode": { - "type": "string" - }, - "bytecodeHash": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ContractFactory": { + "Analytics_AverageStickiness_Request": { "type": "object", - "required": [ - "id", - "chainId", - "contractAddress", - "uid", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "contractAddress": { - "type": "string" - }, - "uid": { - "type": "string" - }, - "abi": { - "type": "string" - }, - "bytecode": { - "type": "string" - }, - "bytecodeHash": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "NewContractSource": { + "Analytics_D1RetentionByCohort_Request": { "type": "object", - "required": [ - "uid", - "name", - "contractType", - "bytecode", - "abi" - ], "properties": { - "uid": { - "type": "string" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string" - }, - "author": { - "type": "string" - }, - "license": { - "type": "string" - }, - "audited": { - "type": "boolean" - }, - "moreInfoUrl": { - "type": "string" - }, - "disabled": { - "type": "boolean" - }, - "contractType": { - "type": "string" - }, - "bytecode": { - "type": "string" - }, - "abi": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Page": { + "Analytics_D3RetentionByCohort_Request": { "type": "object", "properties": { - "pageSize": { - "type": "number" - }, - "page": { - "type": "number" - }, - "column": { - "type": "string" - }, - "more": { - "type": "boolean" - }, - "before": { - "type": "object" - }, - "after": { - "type": "object" - }, - "sort": { - "type": "array", - "description": "[]SortBy", - "items": { - "$ref": "#/components/schemas/SortBy" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "SortBy": { + "Analytics_D7RetentionByCohort_Request": { "type": "object", - "required": [ - "column" - ], "properties": { - "column": { - "type": "string" - }, - "order": { - "$ref": "#/components/schemas/SortOrder" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "BillingSettings": { + "Analytics_D14RetentionByCohort_Request": { "type": "object", - "required": [ - "maxKeys", - "rateLimit", - "creditsIncludedWarn", - "creditsIncludedMax", - "creditsOverageWarn", - "creditsOverageMax", - "priceSubscriptionTier", - "priceCreditOverage", - "marketplaceFee", - "gasFeeMarkup", - "blockTransactions", - "providerSettings" - ], - "properties": { - "maxKeys": { - "type": "number" - }, - "rateLimit": { - "type": "number" - }, - "creditsIncludedWarn": { - "type": "number" - }, - "creditsIncludedMax": { - "type": "number" - }, - "creditsOverageWarn": { - "type": "number" - }, - "creditsOverageMax": { - "type": "number" - }, - "priceSubscriptionTier": { - "type": "string" - }, - "priceCreditOverage": { - "type": "string" - }, - "marketplaceFee": { - "type": "string" - }, - "gasFeeMarkup": { - "type": "string" - }, - "blockTransactions": { - "type": "boolean" - }, - "providerSettings": { - "type": "object", - "description": "map", - "additionalProperties": { - "$ref": "#/components/schemas/BillingProviderSettings" - } + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "BillingProviderSettings": { + "Analytics_D28RetentionByCohort_Request": { "type": "object", - "required": [ - "priceSubscriptionTier", - "priceCreditOverage", - "disabled" - ], "properties": { - "priceSubscriptionTier": { - "type": "string" - }, - "priceCreditOverage": { - "type": "string" - }, - "disabled": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "BillingOverride": { + "Analytics_AverageD1Retention_Request": { "type": "object", - "required": [ - "extraKeys", - "discountSubscriptionTier", - "discountCreditOverage", - "forceAllowTransactions" - ], "properties": { - "extraKeys": { - "type": "number" - }, - "rateLimit": { - "type": "number" - }, - "creditsIncludedWarn": { - "type": "number" - }, - "creditsOverageWarn": { - "type": "number" - }, - "creditsOverageMax": { - "type": "number" - }, - "discountSubscriptionTier": { - "type": "number" - }, - "discountCreditOverage": { - "type": "number" - }, - "marketplaceFee": { - "type": "number" - }, - "forceAllowTransactions": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "SubscriptionInfo": { + "Analytics_AverageD3Retention_Request": { "type": "object", - "required": [ - "current", - "subscriptionUrl", - "cycleStart", - "cycleEnd", - "settings", - "creditsBonus", - "creditUsage", - "creditBalance", - "creditOverage" - ], "properties": { - "current": { - "$ref": "#/components/schemas/ProjectSubscription" - }, - "subscriptionUrl": { - "type": "string" - }, - "cycleStart": { - "type": "string" - }, - "cycleEnd": { - "type": "string" - }, - "plannedDowngrade": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "pendingUpgrade": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "settings": { - "$ref": "#/components/schemas/BillingSettings" - }, - "creditsBonus": { - "type": "number" - }, - "creditUsage": { - "type": "number" - }, - "creditBalance": { - "type": "number" - }, - "creditOverage": { - "type": "number" - }, - "extraCharged": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "PaymentHistory": { + "Analytics_AverageD7Retention_Request": { "type": "object", - "required": [ - "totalPayments", - "payments" - ], "properties": { - "totalPayments": { - "type": "number" - }, - "payments": { - "type": "array", - "description": "[]Payment", - "items": { - "$ref": "#/components/schemas/Payment" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Redirect": { + "Analytics_AverageD14Retention_Request": { "type": "object", - "required": [ - "url" - ], "properties": { - "url": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "StripeEventData": { + "Analytics_AverageD28Retention_Request": { "type": "object", - "required": [ - "object" - ], "properties": { - "object": { - "$ref": "#/components/schemas/StripeEventDataObject" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "StripeEventDataObject": { + "Analytics_MonthlyActiveWalletsBySegment_Request": { "type": "object", - "required": [ - "id", - "object" - ], "properties": { - "id": { - "type": "string" - }, - "object": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Payment": { + "Analytics_MonthlyTransactingWalletsBySegment_Request": { "type": "object", - "required": [ - "id", - "projectId", - "provider", - "externalTxnID", - "createdAt" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "status": { - "$ref": "#/components/schemas/PaymentStatus" - }, - "provider": { - "$ref": "#/components/schemas/PaymentProvider" - }, - "externalTxnID": { - "type": "string" - }, - "createdAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "PaymentLog": { + "Analytics_WeeklyActiveWallets_Request": { "type": "object", - "required": [ - "id", - "paymentID", - "data", - "createdAt" - ], "properties": { - "id": { - "type": "number" - }, - "paymentID": { - "type": "number" - }, - "data": { - "$ref": "#/components/schemas/PaymentLogData" - }, - "createdAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "PaymentLogData": { + "Analytics_TotalViews_Request": { "type": "object", - "required": [ - "type", - "data" - ], "properties": { - "type": { - "type": "string" - }, - "data": { - "type": "object" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "InvoicesReturn": { + "Analytics_DailyViews_Request": { "type": "object", - "required": [ - "hasMore", - "invoices" - ], "properties": { - "hasMore": { - "type": "boolean" - }, - "invoices": { - "type": "array", - "description": "[]Invoice", - "items": { - "$ref": "#/components/schemas/Invoice" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Invoice": { + "Analytics_ViewsByCountry_Request": { "type": "object", - "required": [ - "id", - "date", - "amount", - "paid", - "url" - ], "properties": { - "id": { - "type": "string" - }, - "date": { - "type": "string" - }, - "amount": { - "type": "string" - }, - "paid": { - "type": "boolean" - }, - "url": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "SubscriptionPlans": { + "Analytics_ViewsByDevice_Request": { "type": "object", - "required": [ - "configs" - ], "properties": { - "configs": { - "type": "object", - "description": "map", - "additionalProperties": { - "$ref": "#/components/schemas/SubscriptionPlan" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "SubscriptionPlan": { + "Analytics_ViewsByOS_Request": { "type": "object", - "required": [ - "tier", - "settings", - "features" - ], "properties": { - "tier": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "settings": { - "$ref": "#/components/schemas/BillingSettings" - }, - "features": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "CollectionInfo": { + "Analytics_DailyUniqueVisitors_Request": { "type": "object", - "required": [ - "chainId", - "title", - "type", - "image", - "address", - "link", - "description", - "featured" - ], "properties": { - "chainId": { - "type": "number" - }, - "title": { - "type": "string" - }, - "type": { - "type": "string" - }, - "image": { - "type": "string" - }, - "address": { - "type": "string" - }, - "link": { - "type": "string" - }, - "description": { - "type": "string" - }, - "featured": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ContractInfo": { + "Analytics_MonthlyUniqueVisitors_Request": { "type": "object", - "required": [ - "chainId", - "address", - "name", - "type", - "symbol", - "logoURI", - "deployed", - "bytecodeHash", - "extensions", - "contentHash", - "updatedAt" - ], - "properties": { - "chainId": { - "type": "number" - }, - "address": { - "type": "string" - }, - "name": { - "type": "string" - }, - "type": { - "type": "string" - }, - "symbol": { - "type": "string" - }, - "decimals": { - "type": "number" - }, - "logoURI": { - "type": "string" - }, - "deployed": { - "type": "boolean" - }, - "bytecodeHash": { - "type": "string" - }, - "extensions": { - "type": "object" - }, - "contentHash": { - "type": "number" - }, - "updatedAt": { - "type": "string" + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ProjectInvitation": { + "Analytics_ActiveSessions_Request": { "type": "object", - "required": [ - "id", - "projectId", - "code", - "access", - "expiresAt", - "usageCount", - "createdAt" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "code": { - "type": "string" - }, - "access": { - "$ref": "#/components/schemas/CollaboratorAccess" - }, - "expiresAt": { - "type": "string" - }, - "usageCount": { - "type": "number" - }, - "signupLimit": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "MarketplaceConfigSchema": { + "Analytics_UserEvents_Request": { "type": "object", - "required": [ - "version", - "config", - "style" - ], "properties": { - "version": { - "type": "number" - }, - "config": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "style": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "MarketplaceConfig": { + "Analytics_EcosystemTotalWallets_Request": { "type": "object", - "required": [ - "id", - "projectId", - "version", - "config", - "settings", - "style" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "version": { - "type": "number" - }, - "config": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "settings": { - "$ref": "#/components/schemas/MarketplaceSettings" - }, - "style": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "MarketplaceWalletOptions": { + "Analytics_EcosystemTotalProjects_Request": { "type": "object", - "required": [ - "walletType", - "oidcIssuers", - "connectors", - "includeEIP6963Wallets" - ], "properties": { - "walletType": { - "$ref": "#/components/schemas/MarketplaceWallet" - }, - "oidcIssuers": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "string" - } - }, - "connectors": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "includeEIP6963Wallets": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "MarketplaceCollection": { + "Analytics_EcosystemTotalProjectsCreated_Request": { "type": "object", - "required": [ - "marketplaceType", - "chainId", - "address", - "feePercetage", - "currencyOptions" - ], "properties": { - "marketplaceType": { - "$ref": "#/components/schemas/MarketplaceType" - }, - "chainId": { - "type": "number" - }, - "address": { - "type": "string" - }, - "feePercetage": { - "type": "number" - }, - "currencyOptions": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "MarketplaceSettings": { + "Analytics_EcosystemTotalActiveProjects_Request": { "type": "object", - "required": [ - "publisherId", - "title", - "shortDescription", - "socials", - "faviconUrl", - "landingBannerUrl", - "collections", - "walletOptions", - "landingPageLayout", - "logoUrl", - "bannerUrl" - ], - "properties": { - "publisherId": { - "type": "string" - }, - "title": { - "type": "string" - }, - "shortDescription": { - "type": "string" - }, - "socials": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "string" - } - }, - "faviconUrl": { - "type": "string" - }, - "landingBannerUrl": { - "type": "string" - }, - "collections": { - "type": "array", - "description": "[]MarketplaceCollection", - "items": { - "$ref": "#/components/schemas/MarketplaceCollection" - } - }, - "walletOptions": { - "$ref": "#/components/schemas/MarketplaceWalletOptions" - }, - "landingPageLayout": { - "type": "string" - }, - "logoUrl": { - "type": "string" - }, - "bannerUrl": { - "type": "string" - }, - "fontUrl": { - "type": "string" - }, - "ogImage": { - "type": "string" + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "MarketplaceHostname": { + "Analytics_EcosystemTotalDevelopers_Request": { "type": "object", - "required": [ - "id", - "marketplaceConfigId", - "hostname", - "isDefaultHostname", - "isCustomDomain", - "createdAt" - ], "properties": { - "id": { - "type": "number" - }, - "marketplaceConfigId": { - "type": "number" - }, - "hostname": { - "type": "string" - }, - "isDefaultHostname": { - "type": "boolean" - }, - "isCustomDomain": { - "type": "boolean" - }, - "createdAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "OffchainInventory": { + "Analytics_EcosystemActiveDevelopers_Request": { "type": "object", - "required": [ - "id", - "projectId", - "chainId", - "externalProductId", - "paymentTokenAddress", - "paymentTokenType", - "paymentTokenId", - "paymentAmount", - "paymentRecipient" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "externalProductId": { - "type": "string" - }, - "paymentTokenAddress": { - "type": "string" - }, - "paymentTokenType": { - "$ref": "#/components/schemas/TokenType" - }, - "paymentTokenId": { - "type": "number" - }, - "paymentAmount": { - "type": "number" - }, - "paymentRecipient": { - "type": "string" - }, - "chainedCallAddress": { - "type": "string" - }, - "chainedCallData": { - "type": "string" - }, - "allowCrossChainPayments": { - "type": "boolean" - }, - "callbackURL": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "OffchainPayment": { + "Analytics_EcosystemDailyActiveWallets_Request": { "type": "object", - "required": [ - "id", - "offchainInventoryId", - "productRecipient", - "paymentChainId", - "paymentTokenAddress", - "expiration", - "createdAt" - ], "properties": { - "id": { - "type": "number" - }, - "offchainInventoryId": { - "type": "number" - }, - "productRecipient": { - "type": "string" - }, - "paymentChainId": { - "type": "number" - }, - "paymentTokenAddress": { - "type": "string" - }, - "expiration": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "completedAt": { - "type": "string" - }, - "processedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "WalletConfigSchema": { + "Analytics_EcosystemMonthlyActiveWallets_Request": { "type": "object", - "required": [ - "version", - "config" - ], "properties": { - "version": { - "type": "number" - }, - "config": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "WalletConfig": { + "Analytics_EcosystemDailyNewProjects_Request": { "type": "object", - "required": [ - "version", - "projectId", - "platform", - "config" - ], "properties": { - "id": { - "type": "number" - }, - "version": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "platform": { - "type": "string" - }, - "config": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ProjectFile": { + "Analytics_EcosystemMonthlyNewProjects_Request": { "type": "object", - "required": [ - "id", - "projectId", - "scope", - "mimetype", - "filepath", - "contents", - "hash", - "url", - "createdAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "scope": { - "$ref": "#/components/schemas/FileScope" - }, - "mimetype": { - "type": "string" - }, - "filepath": { - "type": "string" - }, - "contents": { - "type": "array", - "description": "[]byte", - "items": { - "type": "string" - } - }, - "hash": { - "type": "array", - "description": "[]byte", - "items": { - "type": "string" - } - }, - "url": { - "type": "string" - }, - "createdAt": { - "type": "string" + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "EmailTemplate": { + "Analytics_EcosystemTotalContracts_Request": { "type": "object", - "required": [ - "id", - "projectId", - "subject", - "introText", - "logoUrl", - "placeholders", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "templateType": { - "$ref": "#/components/schemas/EmailTemplateType" - }, - "projectId": { - "type": "number" - }, - "subject": { - "type": "string" - }, - "introText": { - "type": "string" - }, - "logoUrl": { - "type": "string" - }, - "template": { - "type": "string" - }, - "placeholders": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "TaskRunner": { + "Analytics_EcosystemMonthlyContracts_Request": { "type": "object", - "required": [ - "id", - "workGroup", - "runAt" - ], "properties": { - "id": { - "type": "number" - }, - "workGroup": { - "type": "string" - }, - "runAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Task": { + "Analytics_EcosystemTopProjectsByActiveWallets_Request": { "type": "object", - "required": [ - "id", - "queue", - "status", - "try", - "payload", - "hash" - ], "properties": { - "id": { - "type": "number" - }, - "queue": { - "type": "string" - }, - "status": { - "$ref": "#/components/schemas/TaskStatus" - }, - "try": { - "type": "number" - }, - "runAt": { - "type": "string" - }, - "lastRanAt": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "payload": { - "type": "array", - "description": "[]byte", - "items": { - "type": "string" - } - }, - "hash": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "QueryFilter": { + "Analytics_EcosystemTopProjectsByNewWallets_Request": { "type": "object", - "required": [ - "projectId" - ], "properties": { - "projectId": { - "type": "number" - }, - "startDate": { - "type": "string" - }, - "endDate": { - "type": "string" - }, - "dateInterval": { - "$ref": "#/components/schemas/DateInterval" - }, - "collections": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "tokenId": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Chart": { + "Analytics_EcosystemWalletsCreated_Request": { "type": "object", - "required": [ - "value", - "label" - ], "properties": { - "value": { - "type": "number" - }, - "label": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "MultiValueChart": { + "Analytics_EcosystemMonthlyActiveEcoWallets_Request": { "type": "object", - "required": [ - "value", - "label" - ], "properties": { - "value": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "number" - } - }, - "label": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "QueryResult": { + "Analytics_EcosystemDailyNewWallets_Request": { "type": "object", - "required": [ - "collection", - "source", - "volumeUSD", - "numTokens", - "numTxns" - ], "properties": { - "collection": { - "type": "string" - }, - "source": { - "type": "string" - }, - "tokenId": { - "type": "string" - }, - "volumeUSD": { - "type": "number" - }, - "numTokens": { - "type": "number" - }, - "numTxns": { - "type": "number" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "CreditBonus": { + "Analytics_EcosystemMonthlyNewWallets_Request": { "type": "object", - "required": [ - "id", - "projectId", - "amount", - "balance", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "amount": { - "type": "number" - }, - "balance": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "OpenIdProvider": { + "Analytics_EcosystemTopProjectsByDeveloperActivity_Request": { "type": "object", - "required": [ - "iss", - "aud" - ], "properties": { - "iss": { - "type": "string" - }, - "aud": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "WaasSettings": { + "Analytics_EcosystemTopProjectsByNewDevelopers_Request": { "type": "object", - "required": [ - "recoveryAddress", - "authConfig", - "tenantState", - "emailAuth", - "oidcProviders", - "allowedOrigins", - "updateCode", - "tenantKey" - ], "properties": { - "recoveryAddress": { - "type": "string" - }, - "authConfig": { - "$ref": "#/components/schemas/WaasAuthConfig" - }, - "tenantState": { - "$ref": "#/components/schemas/WaasTenantState" - }, - "emailAuth": { - "type": "boolean" - }, - "oidcProviders": { - "type": "array", - "description": "[]OpenIdProvider", - "items": { - "$ref": "#/components/schemas/OpenIdProvider" - } - }, - "allowedOrigins": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "updateCode": { - "type": "string" - }, - "tenantKey": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "WaasAuthEmailConfig": { + "Analytics_EcosystemTotalMarketplaces_Request": { "type": "object", - "required": [ - "enabled" - ], "properties": { - "enabled": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "WaasAuthGuestConfig": { + "Analytics_EcosystemMonthlyMarketplaces_Request": { "type": "object", - "required": [ - "enabled" - ], "properties": { - "enabled": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "WaasAuthPlayfabConfig": { + "Analytics_EcosystemActiveMarketplaces_Request": { "type": "object", - "required": [ - "enabled" - ], "properties": { - "enabled": { - "type": "boolean" - }, - "titleId": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "WaasAuthStytchConfig": { + "Analytics_EcosystemWalletsByCountry_Request": { "type": "object", - "required": [ - "enabled" - ], "properties": { - "enabled": { - "type": "boolean" - }, - "projectId": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "WaasAuthConfig": { + "Analytics_EcosystemWalletsByDevice_Request": { "type": "object", "properties": { - "email": { - "$ref": "#/components/schemas/WaasAuthEmailConfig" - }, - "guest": { - "$ref": "#/components/schemas/WaasAuthGuestConfig" - }, - "playfab": { - "$ref": "#/components/schemas/WaasAuthPlayfabConfig" - }, - "stytch": { - "$ref": "#/components/schemas/WaasAuthStytchConfig" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "WaasWalletStatus": { + "Analytics_EcosystemWalletsByOS_Request": { "type": "object", - "required": [ - "chainId", - "address", - "deployed" - ], "properties": { - "chainId": { - "type": "number" - }, - "address": { - "type": "string" - }, - "deployed": { - "type": "boolean" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "RawData": { + "Analytics_EcosystemWalletsByBrowser_Request": { "type": "object", - "required": [ - "data" - ], "properties": { - "data": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Audience": { + "Analytics_EcosystemWalletsByType_Request": { "type": "object", - "required": [ - "id", - "projectId", - "name", - "contactCount", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "name": { - "type": "string" - }, - "contactCount": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "AudienceContact": { + "Analytics_EcosystemWalletsByLoginMethod_Request": { "type": "object", - "required": [ - "id", - "audienceId", - "address", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "audienceId": { - "type": "number" - }, - "name": { - "type": "string" - }, - "address": { - "type": "string" - }, - "email": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Trial": { + "Analytics_EcosystemTotalTransactions_Request": { "type": "object", - "required": [ - "id", - "projectId", - "type", - "startAt", - "endAt" - ], "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "type": { - "$ref": "#/components/schemas/TrialType" - }, - "startAt": { - "type": "string" - }, - "endAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "ExtendedMarketplaceConfig": { + "Analytics_EcosystemMonthlyTransactions_Request": { "type": "object", - "required": [ - "config", - "accessKey", - "waasEmailEnabled", - "waasTenantKey", - "waasProviders" - ], "properties": { - "config": { - "$ref": "#/components/schemas/MarketplaceSettings" - }, - "accessKey": { - "type": "string" - }, - "waasEmailEnabled": { - "type": "boolean" - }, - "waasTenantKey": { - "type": "string" - }, - "waasProviders": { - "type": "array", - "description": "[]OpenIdProvider", - "items": { - "$ref": "#/components/schemas/OpenIdProvider" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Customer": { + "Analytics_EcosystemTotalTransactingUsers_Request": { "type": "object", - "required": [ - "id", - "name", - "tier", - "metadata", - "createdAt", - "updatedAt" - ], "properties": { - "id": { - "type": "number" - }, - "name": { - "type": "string" - }, - "tier": { - "$ref": "#/components/schemas/CustomerTier" - }, - "metadata": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "string" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "CustomerFilter": { + "Analytics_EcosystemMonthlyTransactingUsers_Request": { "type": "object", "properties": { - "name": { - "type": "string" - }, - "tier": { - "$ref": "#/components/schemas/CustomerTier" + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_TotalCompute_Request": { + "Analytics_EcosystemTotalTransactionVolume_Request": { "type": "object", "properties": { "filter": { @@ -3742,7 +1450,7 @@ } } }, - "Builder_ComputeByService_Request": { + "Analytics_EcosystemMonthlyTransactionVolume_Request": { "type": "object", "properties": { "filter": { @@ -3750,7 +1458,7 @@ } } }, - "Builder_DailyComputeByType_Request": { + "Analytics_EcosystemTopProjectsByTransactions_Request": { "type": "object", "properties": { "filter": { @@ -3758,7 +1466,7 @@ } } }, - "Builder_DailyComputeByService_Request": { + "Analytics_EcosystemTopProjectsByTransactingUsers_Request": { "type": "object", "properties": { "filter": { @@ -3766,7 +1474,7 @@ } } }, - "Builder_GetOrderbookCollections_Request": { + "Analytics_EcosystemTopProjectsByTransactionVolume_Request": { "type": "object", "properties": { "filter": { @@ -3774,7 +1482,7 @@ } } }, - "Builder_WalletsTotal_Request": { + "Analytics_TotalProjectTransactions_Request": { "type": "object", "properties": { "filter": { @@ -3782,7 +1490,7 @@ } } }, - "Builder_WalletsDaily_Request": { + "Analytics_DailyProjectTransactions_Request": { "type": "object", "properties": { "filter": { @@ -3790,7 +1498,7 @@ } } }, - "Builder_WalletsMonthly_Request": { + "Analytics_MonthlyProjectTransactions_Request": { "type": "object", "properties": { "filter": { @@ -3798,7 +1506,7 @@ } } }, - "Builder_WalletsByCountry_Request": { + "Analytics_TotalProjectTransactionsByChain_Request": { "type": "object", "properties": { "filter": { @@ -3806,7 +1514,7 @@ } } }, - "Builder_WalletsByDevice_Request": { + "Analytics_TotalProjectTransactionsByCollection_Request": { "type": "object", "properties": { "filter": { @@ -3814,7 +1522,7 @@ } } }, - "Builder_WalletsByBrowser_Request": { + "Analytics_TotalProjectTransactionsByToken_Request": { "type": "object", "properties": { "filter": { @@ -3822,7 +1530,7 @@ } } }, - "Builder_WalletsByOS_Request": { + "Analytics_MonthlyProjectTransactionsByCollection_Request": { "type": "object", "properties": { "filter": { @@ -3830,7 +1538,7 @@ } } }, - "Builder_WalletsTxnSentTotal_Request": { + "Analytics_TotalProjectTransactionVolume_Request": { "type": "object", "properties": { "filter": { @@ -3838,7 +1546,7 @@ } } }, - "Builder_WalletsTxnSentDaily_Request": { + "Analytics_DailyProjectVolume_Request": { "type": "object", "properties": { "filter": { @@ -3846,7 +1554,7 @@ } } }, - "Builder_WalletsTxnSentMonthly_Request": { + "Analytics_MonthlyProjectVolume_Request": { "type": "object", "properties": { "filter": { @@ -3854,7 +1562,7 @@ } } }, - "Builder_MarketTxnEventTotal_Request": { + "Analytics_TotalProjectVolumeByChain_Request": { "type": "object", "properties": { "filter": { @@ -3862,7 +1570,7 @@ } } }, - "Builder_MarketTxnEventDaily_Request": { + "Analytics_TotalProjectVolumeByCollection_Request": { "type": "object", "properties": { "filter": { @@ -3870,7 +1578,7 @@ } } }, - "Builder_MarketTxnEventMonthly_Request": { + "Analytics_TotalProjectVolumeByToken_Request": { "type": "object", "properties": { "filter": { @@ -3878,7 +1586,7 @@ } } }, - "Builder_MarketWalletsTotal_Request": { + "Analytics_MonthlyProjectVolumeByCollection_Request": { "type": "object", "properties": { "filter": { @@ -3886,7 +1594,7 @@ } } }, - "Builder_MarketWalletsDaily_Request": { + "Analytics_TransactionVolumePerUser_Request": { "type": "object", "properties": { "filter": { @@ -3894,7 +1602,7 @@ } } }, - "Builder_MarketWalletsMonthly_Request": { + "Analytics_TransactionVolumePerTransactingUser_Request": { "type": "object", "properties": { "filter": { @@ -3902,7 +1610,7 @@ } } }, - "Builder_TotalWalletTxnConversionRate_Request": { + "Analytics_TotalTransactingUsers_Request": { "type": "object", "properties": { "filter": { @@ -3910,7 +1618,7 @@ } } }, - "Builder_DailyWalletTxnConversionRate_Request": { + "Analytics_DailyUniqueTransactingUsers_Request": { "type": "object", "properties": { "filter": { @@ -3918,7 +1626,7 @@ } } }, - "Builder_MonthlyWalletTxnConversionRate_Request": { + "Analytics_MonthlyUniqueTransactingUsers_Request": { "type": "object", "properties": { "filter": { @@ -3926,7 +1634,7 @@ } } }, - "Builder_DailyNewWallets_Request": { + "Analytics_TransactingUserConversion_Request": { "type": "object", "properties": { "filter": { @@ -3934,7 +1642,7 @@ } } }, - "Builder_MonthlyNewWallets_Request": { + "Analytics_DailyTransactingUserConversion_Request": { "type": "object", "properties": { "filter": { @@ -3942,7 +1650,7 @@ } } }, - "Builder_TotalNewWallets_Request": { + "Analytics_MonthlyTransactingUserConversion_Request": { "type": "object", "properties": { "filter": { @@ -3950,7 +1658,7 @@ } } }, - "Builder_AverageDAU_Request": { + "Analytics_RepeatingTransactingUserPercentage_Request": { "type": "object", "properties": { "filter": { @@ -3958,7 +1666,7 @@ } } }, - "Builder_RollingStickiness_Request": { + "Analytics_WeekOnWeekTransactingUserRetention_Request": { "type": "object", "properties": { "filter": { @@ -3966,7 +1674,7 @@ } } }, - "Builder_AverageStickiness_Request": { + "Analytics_MonthOnMonthTransactingUserRetention_Request": { "type": "object", "properties": { "filter": { @@ -3974,7 +1682,7 @@ } } }, - "Builder_D1RetentionByCohort_Request": { + "Analytics_AvgBalanceOfSequenceWallets_Request": { "type": "object", "properties": { "filter": { @@ -3982,7 +1690,7 @@ } } }, - "Builder_D3RetentionByCohort_Request": { + "Analytics_AvgBalanceOfTransactingSequenceWallets_Request": { "type": "object", "properties": { "filter": { @@ -3990,7 +1698,7 @@ } } }, - "Builder_D7RetentionByCohort_Request": { + "Analytics_TotalMarketplaceTransactions_Request": { "type": "object", "properties": { "filter": { @@ -3998,7 +1706,7 @@ } } }, - "Builder_D14RetentionByCohort_Request": { + "Analytics_DailyMarketplaceTransactions_Request": { "type": "object", "properties": { "filter": { @@ -4006,7 +1714,7 @@ } } }, - "Builder_D28RetentionByCohort_Request": { + "Analytics_MonthlyMarketplaceTransactions_Request": { "type": "object", "properties": { "filter": { @@ -4014,7 +1722,7 @@ } } }, - "Builder_AverageD1Retention_Request": { + "Analytics_TotalMarketplaceItemsTransacted_Request": { "type": "object", "properties": { "filter": { @@ -4022,7 +1730,7 @@ } } }, - "Builder_AverageD3Retention_Request": { + "Analytics_TotalMarketplaceItemsPurchased_Request": { "type": "object", "properties": { "filter": { @@ -4030,7 +1738,7 @@ } } }, - "Builder_AverageD7Retention_Request": { + "Analytics_TotalMarketplaceItemsSold_Request": { "type": "object", "properties": { "filter": { @@ -4038,7 +1746,7 @@ } } }, - "Builder_AverageD14Retention_Request": { + "Analytics_TotalMarketplaceItemsListed_Request": { "type": "object", "properties": { "filter": { @@ -4046,7 +1754,7 @@ } } }, - "Builder_AverageD28Retention_Request": { + "Analytics_TotalMarketplaceItemsOffered_Request": { "type": "object", "properties": { "filter": { @@ -4054,7 +1762,7 @@ } } }, - "Builder_MonthlyActiveWalletsBySegment_Request": { + "Analytics_TotalMarketplaceTransactingUsers_Request": { "type": "object", "properties": { "filter": { @@ -4062,7 +1770,7 @@ } } }, - "Builder_MonthlyTransactingWalletsBySegment_Request": { + "Analytics_TotalMarketplaceVolume_Request": { "type": "object", "properties": { "filter": { @@ -4070,7 +1778,7 @@ } } }, - "Builder_WeeklyActiveWallets_Request": { + "Analytics_DailyMarketplaceVolume_Request": { "type": "object", "properties": { "filter": { @@ -4078,458 +1786,362 @@ } } }, - "Builder_TotalCompute_Response": { + "Analytics_MonthlyMarketplaceVolume_Request": { "type": "object", "properties": { - "computeStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_ComputeByService_Response": { + "Analytics_AverageMarketplaceTransactionPrice_Request": { "type": "object", "properties": { - "computeStats": { - "type": "array", - "description": "[]MultiValueChart", - "items": { - "$ref": "#/components/schemas/MultiValueChart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_DailyComputeByType_Response": { + "Analytics_TotalMarketplaceTradedCollections_Request": { "type": "object", "properties": { - "computeStats": { - "type": "array", - "description": "[]MultiValueChart", - "items": { - "$ref": "#/components/schemas/MultiValueChart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_DailyComputeByService_Response": { + "Analytics_TopMarketplaceBuyers_Request": { "type": "object", "properties": { - "computeStats": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_GetOrderbookCollections_Response": { + "Analytics_TopMarketplaceSellers_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]QueryResult", - "items": { - "$ref": "#/components/schemas/QueryResult" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsTotal_Response": { + "Analytics_MarketplaceCollectionTransactions_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsDaily_Response": { + "Analytics_TotalShopTransactions_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsMonthly_Response": { + "Analytics_DailyShopTransactions_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsByCountry_Response": { + "Analytics_MonthlyShopTransactions_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsByDevice_Response": { + "Analytics_TotalShopItemsPurchased_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsByBrowser_Response": { + "Analytics_TotalShopPurchasers_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsByOS_Response": { + "Analytics_TotalShopVolume_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsTxnSentTotal_Response": { + "Analytics_DailyShopVolume_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsTxnSentDaily_Response": { + "Analytics_MonthlyShopVolume_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_WalletsTxnSentMonthly_Response": { + "Analytics_AverageShopPurchasePrice_Request": { "type": "object", "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_MarketTxnEventTotal_Response": { + "Analytics_TopShopBuyers_Request": { "type": "object", "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_MarketTxnEventDaily_Response": { + "Analytics_ShopCollectionTransactions_Request": { "type": "object", "properties": { - "marketStats": { - "type": "array", - "description": "[]MultiValueChart", - "items": { - "$ref": "#/components/schemas/MultiValueChart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_MarketTxnEventMonthly_Response": { + "Analytics_TotalMarketplaceItemsSoldByToken_Request": { "type": "object", "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_MarketWalletsTotal_Response": { + "Analytics_TotalShopItemsSoldByToken_Request": { "type": "object", "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_MarketWalletsDaily_Response": { + "Analytics_TrailsTotalTransactionVolume_Request": { "type": "object", "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_MarketWalletsMonthly_Response": { + "Analytics_TrailsTotalTransactions_Request": { "type": "object", "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_TotalWalletTxnConversionRate_Response": { + "Analytics_TrailsTotalUniqueTransactingWallets_Request": { "type": "object", "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_DailyWalletTxnConversionRate_Response": { + "Analytics_TrailsAverageTransactionDuration_Request": { "type": "object", "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_MonthlyWalletTxnConversionRate_Response": { + "Analytics_TrailsPaymentCompletionPercentage_Request": { "type": "object", "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_DailyNewWallets_Response": { + "Analytics_TrailsTransactionsByDomain_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_MonthlyNewWallets_Response": { + "Analytics_TrailsTransactionsByAmount_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_TotalNewWallets_Response": { + "Analytics_TrailsDailyTransactionVolume_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_AverageDAU_Response": { + "Analytics_TrailsDailyTransactions_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_RollingStickiness_Response": { + "Analytics_TrailsDailyTransactingWallets_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_AverageStickiness_Response": { + "Analytics_TrailsDailyActiveWallets_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_D1RetentionByCohort_Response": { + "Analytics_TrailsDailyAverageTransactionDuration_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_D3RetentionByCohort_Response": { + "Analytics_TrailsDailyPaymentCompletionPercentage_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_D7RetentionByCohort_Response": { + "Analytics_TrailsMonthlyTransactionVolume_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_D14RetentionByCohort_Response": { + "Analytics_TrailsMonthlyTransactions_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_D28RetentionByCohort_Response": { + "Analytics_TrailsMonthlyTransactingWallets_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_AverageD1Retention_Response": { + "Analytics_TrailsMonthlyActiveWallets_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_AverageD3Retention_Response": { + "Analytics_TrailsMonthlyAverageTransactionDuration_Request": { "type": "object", "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } + "filter": { + "$ref": "#/components/schemas/QueryFilter" } } }, - "Builder_AverageD7Retention_Response": { + "Analytics_TrailsMonthlyPaymentCompletionPercentage_Request": { "type": "object", "properties": { - "data": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } + }, + "Analytics_TrailsTransactionsByMode_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } + }, + "Analytics_TrailsTransactionsByRoute_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } + }, + "Analytics_TrailsTransactionsByProvider_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } + }, + "Analytics_TrailsTransactionsByCountry_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } + }, + "Analytics_TrailsTopTransactions_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } + }, + "Analytics_ExportTrailsTransactions_Request": { + "type": "object", + "properties": { + "filter": { + "$ref": "#/components/schemas/QueryFilter" + } + } + }, + "Analytics_TotalCompute_Response": { + "type": "object", + "properties": { + "computeStats": { "type": "array", "description": "[]Chart", "items": { @@ -4538,34 +2150,34 @@ } } }, - "Builder_AverageD14Retention_Response": { + "Analytics_ComputeByService_Response": { "type": "object", "properties": { - "data": { + "computeStats": { "type": "array", - "description": "[]Chart", + "description": "[]MultiValueChart", "items": { - "$ref": "#/components/schemas/Chart" + "$ref": "#/components/schemas/MultiValueChart" } } } }, - "Builder_AverageD28Retention_Response": { + "Analytics_DailyComputeByType_Response": { "type": "object", "properties": { - "data": { + "computeStats": { "type": "array", - "description": "[]Chart", + "description": "[]MultiValueChart", "items": { - "$ref": "#/components/schemas/Chart" + "$ref": "#/components/schemas/MultiValueChart" } } } }, - "Builder_MonthlyActiveWalletsBySegment_Response": { + "Analytics_DailyComputeByService_Response": { "type": "object", "properties": { - "data": { + "computeStats": { "type": "object", "description": "map", "additionalProperties": { @@ -4578,77 +2190,12855 @@ } } }, - "Builder_MonthlyTransactingWalletsBySegment_Response": { + "Analytics_GetOrderbookCollections_Response": { "type": "object", "properties": { "data": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" + "type": "array", + "description": "[]QueryResult", + "items": { + "$ref": "#/components/schemas/QueryResult" + } + } + } + }, + "Analytics_CreditsPerDailyActiveUser_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_CreditsPerMonthlyActiveUser_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_WalletsTotal_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_WalletsDaily_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_WalletsMonthly_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_WalletsByCountry_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_WalletsByDevice_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_WalletsByBrowser_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_WalletsByOS_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_WalletsByType_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_WalletsTxnSentTotal_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_WalletsTxnSentDaily_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_WalletsTxnSentMonthly_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_WalletsByOrigin_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_ConnectionsByOrigin_Response": { + "type": "object", + "properties": { + "walletStats": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_MarketTxnEventTotal_Response": { + "type": "object", + "properties": { + "marketStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MarketTxnEventDaily_Response": { + "type": "object", + "properties": { + "marketStats": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_MarketTxnEventMonthly_Response": { + "type": "object", + "properties": { + "marketStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MarketWalletsTotal_Response": { + "type": "object", + "properties": { + "marketStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MarketWalletsDaily_Response": { + "type": "object", + "properties": { + "marketStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MarketWalletsMonthly_Response": { + "type": "object", + "properties": { + "marketStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalWalletTxnConversionRate_Response": { + "type": "object", + "properties": { + "marketStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyWalletTxnConversionRate_Response": { + "type": "object", + "properties": { + "marketStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyWalletTxnConversionRate_Response": { + "type": "object", + "properties": { + "marketStats": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyNewWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyNewWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalNewWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AverageDAU_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_RollingStickiness_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AverageStickiness_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_D1RetentionByCohort_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_D3RetentionByCohort_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_D7RetentionByCohort_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_D14RetentionByCohort_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_D28RetentionByCohort_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AverageD1Retention_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AverageD3Retention_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AverageD7Retention_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AverageD14Retention_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AverageD28Retention_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyActiveWalletsBySegment_Response": { + "type": "object", + "properties": { + "data": { + "type": "object", + "description": "map", + "additionalProperties": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + } + }, + "Analytics_MonthlyTransactingWalletsBySegment_Response": { + "type": "object", + "properties": { + "data": { + "type": "object", + "description": "map", + "additionalProperties": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + } + }, + "Analytics_WeeklyActiveWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalViews_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyViews_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_ViewsByCountry_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_ViewsByDevice_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_ViewsByOS_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_DailyUniqueVisitors_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_MonthlyUniqueVisitors_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_ActiveSessions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_UserEvents_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTotalWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTotalProjects_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTotalProjectsCreated_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTotalActiveProjects_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTotalDevelopers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemActiveDevelopers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemDailyActiveWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemMonthlyActiveWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemDailyNewProjects_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemMonthlyNewProjects_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTotalContracts_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemMonthlyContracts_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTopProjectsByActiveWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_EcosystemTopProjectsByNewWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_EcosystemWalletsCreated_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemMonthlyActiveEcoWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemDailyNewWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemMonthlyNewWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTopProjectsByDeveloperActivity_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_EcosystemTopProjectsByNewDevelopers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_EcosystemTotalMarketplaces_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemMonthlyMarketplaces_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemActiveMarketplaces_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemWalletsByCountry_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_EcosystemWalletsByDevice_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_EcosystemWalletsByOS_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_EcosystemWalletsByBrowser_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_EcosystemWalletsByType_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]ChartWithPercentage", + "items": { + "$ref": "#/components/schemas/ChartWithPercentage" + } + } + } + }, + "Analytics_EcosystemWalletsByLoginMethod_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTotalTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemMonthlyTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTotalTransactingUsers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemMonthlyTransactingUsers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTotalTransactionVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemMonthlyTransactionVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_EcosystemTopProjectsByTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_EcosystemTopProjectsByTransactingUsers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_EcosystemTopProjectsByTransactionVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_TotalProjectTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyProjectTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyProjectTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalProjectTransactionsByChain_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalProjectTransactionsByCollection_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalProjectTransactionsByToken_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyProjectTransactionsByCollection_Response": { + "type": "object", + "properties": { + "data": { + "type": "object", + "description": "map", + "additionalProperties": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + } + }, + "Analytics_TotalProjectTransactionVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyProjectVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyProjectVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalProjectVolumeByChain_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalProjectVolumeByCollection_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalProjectVolumeByToken_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyProjectVolumeByCollection_Response": { + "type": "object", + "properties": { + "data": { + "type": "object", + "description": "map", + "additionalProperties": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + } + }, + "Analytics_TransactionVolumePerUser_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TransactionVolumePerTransactingUser_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalTransactingUsers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyUniqueTransactingUsers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyUniqueTransactingUsers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TransactingUserConversion_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyTransactingUserConversion_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyTransactingUserConversion_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_RepeatingTransactingUserPercentage_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_WeekOnWeekTransactingUserRetention_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthOnMonthTransactingUserRetention_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AvgBalanceOfSequenceWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AvgBalanceOfTransactingSequenceWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalMarketplaceTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyMarketplaceTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyMarketplaceTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalMarketplaceItemsTransacted_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalMarketplaceItemsPurchased_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalMarketplaceItemsSold_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalMarketplaceItemsListed_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalMarketplaceItemsOffered_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalMarketplaceTransactingUsers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalMarketplaceVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyMarketplaceVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyMarketplaceVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AverageMarketplaceTransactionPrice_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalMarketplaceTradedCollections_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TopMarketplaceBuyers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TopMarketplaceSellers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MarketplaceCollectionTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_TotalShopTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyShopTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyShopTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalShopItemsPurchased_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalShopPurchasers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TotalShopVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_DailyShopVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_MonthlyShopVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_AverageShopPurchasePrice_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TopShopBuyers_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_ShopCollectionTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]MultiValueChart", + "items": { + "$ref": "#/components/schemas/MultiValueChart" + } + } + } + }, + "Analytics_TotalMarketplaceItemsSoldByToken_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]TokenTransactionData", + "items": { + "$ref": "#/components/schemas/TokenTransactionData" + } + } + } + }, + "Analytics_TotalShopItemsSoldByToken_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]TokenTransactionData", + "items": { + "$ref": "#/components/schemas/TokenTransactionData" + } + } + } + }, + "Analytics_TrailsTotalTransactionVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsTotalTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsTotalUniqueTransactingWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsAverageTransactionDuration_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsPaymentCompletionPercentage_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsTransactionsByDomain_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsTransactionsByAmount_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsDailyTransactionVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsDailyTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsDailyTransactingWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsDailyActiveWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsDailyAverageTransactionDuration_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsDailyPaymentCompletionPercentage_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsMonthlyTransactionVolume_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsMonthlyTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsMonthlyTransactingWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsMonthlyActiveWallets_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsMonthlyAverageTransactionDuration_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsMonthlyPaymentCompletionPercentage_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]Chart", + "items": { + "$ref": "#/components/schemas/Chart" + } + } + } + }, + "Analytics_TrailsTransactionsByMode_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]TrailsTransactionByMode", + "items": { + "$ref": "#/components/schemas/TrailsTransactionByMode" + } + } + } + }, + "Analytics_TrailsTransactionsByRoute_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]TrailsTransactionByRoute", + "items": { + "$ref": "#/components/schemas/TrailsTransactionByRoute" + } + } + } + }, + "Analytics_TrailsTransactionsByProvider_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]TrailsTransactionByProvider", + "items": { + "$ref": "#/components/schemas/TrailsTransactionByProvider" + } + } + } + }, + "Analytics_TrailsTransactionsByCountry_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]TrailsTransactionByCountry", + "items": { + "$ref": "#/components/schemas/TrailsTransactionByCountry" + } + } + } + }, + "Analytics_TrailsTopTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]TrailsTransactionDetail", + "items": { + "$ref": "#/components/schemas/TrailsTransactionDetail" + } + } + } + }, + "Analytics_ExportTrailsTransactions_Response": { + "type": "object", + "properties": { + "data": { + "type": "array", + "description": "[]TrailsTransactionDetail", + "items": { + "$ref": "#/components/schemas/TrailsTransactionDetail" + } + } + } + } + } + }, + "paths": { + "/rpc/Analytics/TotalCompute": { + "post": { + "operationId": "Analytics-TotalCompute", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalCompute_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalCompute_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/ComputeByService": { + "post": { + "operationId": "Analytics-ComputeByService", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ComputeByService_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ComputeByService_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyComputeByType": { + "post": { + "operationId": "Analytics-DailyComputeByType", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyComputeByType_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyComputeByType_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyComputeByService": { + "post": { + "operationId": "Analytics-DailyComputeByService", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyComputeByService_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyComputeByService_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/GetOrderbookCollections": { + "post": { + "operationId": "Analytics-GetOrderbookCollections", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_GetOrderbookCollections_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_GetOrderbookCollections_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/CreditsPerDailyActiveUser": { + "post": { + "operationId": "Analytics-CreditsPerDailyActiveUser", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_CreditsPerDailyActiveUser_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_CreditsPerDailyActiveUser_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/CreditsPerMonthlyActiveUser": { + "post": { + "operationId": "Analytics-CreditsPerMonthlyActiveUser", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_CreditsPerMonthlyActiveUser_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_CreditsPerMonthlyActiveUser_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsTotal": { + "post": { + "operationId": "Analytics-WalletsTotal", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsTotal_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsTotal_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsDaily": { + "post": { + "operationId": "Analytics-WalletsDaily", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsDaily_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsDaily_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsMonthly": { + "post": { + "operationId": "Analytics-WalletsMonthly", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsMonthly_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsMonthly_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsByCountry": { + "post": { + "operationId": "Analytics-WalletsByCountry", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByCountry_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByCountry_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsByDevice": { + "post": { + "operationId": "Analytics-WalletsByDevice", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByDevice_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByDevice_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsByBrowser": { + "post": { + "operationId": "Analytics-WalletsByBrowser", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByBrowser_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByBrowser_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsByOS": { + "post": { + "operationId": "Analytics-WalletsByOS", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByOS_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByOS_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsByType": { + "post": { + "operationId": "Analytics-WalletsByType", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByType_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByType_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsTxnSentTotal": { + "post": { + "operationId": "Analytics-WalletsTxnSentTotal", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsTxnSentTotal_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsTxnSentTotal_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsTxnSentDaily": { + "post": { + "operationId": "Analytics-WalletsTxnSentDaily", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsTxnSentDaily_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsTxnSentDaily_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsTxnSentMonthly": { + "post": { + "operationId": "Analytics-WalletsTxnSentMonthly", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsTxnSentMonthly_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsTxnSentMonthly_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WalletsByOrigin": { + "post": { + "operationId": "Analytics-WalletsByOrigin", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByOrigin_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WalletsByOrigin_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/ConnectionsByOrigin": { + "post": { + "operationId": "Analytics-ConnectionsByOrigin", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ConnectionsByOrigin_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ConnectionsByOrigin_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MarketTxnEventTotal": { + "post": { + "operationId": "Analytics-MarketTxnEventTotal", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketTxnEventTotal_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketTxnEventTotal_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MarketTxnEventDaily": { + "post": { + "operationId": "Analytics-MarketTxnEventDaily", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketTxnEventDaily_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketTxnEventDaily_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MarketTxnEventMonthly": { + "post": { + "operationId": "Analytics-MarketTxnEventMonthly", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketTxnEventMonthly_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketTxnEventMonthly_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MarketWalletsTotal": { + "post": { + "operationId": "Analytics-MarketWalletsTotal", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketWalletsTotal_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketWalletsTotal_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MarketWalletsDaily": { + "post": { + "operationId": "Analytics-MarketWalletsDaily", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketWalletsDaily_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketWalletsDaily_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MarketWalletsMonthly": { + "post": { + "operationId": "Analytics-MarketWalletsMonthly", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketWalletsMonthly_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MarketWalletsMonthly_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalWalletTxnConversionRate": { + "post": { + "operationId": "Analytics-TotalWalletTxnConversionRate", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalWalletTxnConversionRate_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalWalletTxnConversionRate_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyWalletTxnConversionRate": { + "post": { + "operationId": "Analytics-DailyWalletTxnConversionRate", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyWalletTxnConversionRate_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyWalletTxnConversionRate_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyWalletTxnConversionRate": { + "post": { + "operationId": "Analytics-MonthlyWalletTxnConversionRate", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyWalletTxnConversionRate_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyWalletTxnConversionRate_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyNewWallets": { + "post": { + "operationId": "Analytics-DailyNewWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyNewWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyNewWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyNewWallets": { + "post": { + "operationId": "Analytics-MonthlyNewWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyNewWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyNewWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalNewWallets": { + "post": { + "operationId": "Analytics-TotalNewWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalNewWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalNewWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AverageDAU": { + "post": { + "operationId": "Analytics-AverageDAU", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageDAU_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageDAU_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/RollingStickiness": { + "post": { + "operationId": "Analytics-RollingStickiness", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_RollingStickiness_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_RollingStickiness_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AverageStickiness": { + "post": { + "operationId": "Analytics-AverageStickiness", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageStickiness_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageStickiness_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/D1RetentionByCohort": { + "post": { + "operationId": "Analytics-D1RetentionByCohort", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D1RetentionByCohort_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D1RetentionByCohort_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/D3RetentionByCohort": { + "post": { + "operationId": "Analytics-D3RetentionByCohort", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D3RetentionByCohort_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D3RetentionByCohort_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/D7RetentionByCohort": { + "post": { + "operationId": "Analytics-D7RetentionByCohort", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D7RetentionByCohort_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D7RetentionByCohort_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/D14RetentionByCohort": { + "post": { + "operationId": "Analytics-D14RetentionByCohort", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D14RetentionByCohort_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D14RetentionByCohort_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/D28RetentionByCohort": { + "post": { + "operationId": "Analytics-D28RetentionByCohort", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D28RetentionByCohort_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_D28RetentionByCohort_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AverageD1Retention": { + "post": { + "operationId": "Analytics-AverageD1Retention", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD1Retention_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD1Retention_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AverageD3Retention": { + "post": { + "operationId": "Analytics-AverageD3Retention", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD3Retention_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD3Retention_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AverageD7Retention": { + "post": { + "operationId": "Analytics-AverageD7Retention", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD7Retention_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD7Retention_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AverageD14Retention": { + "post": { + "operationId": "Analytics-AverageD14Retention", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD14Retention_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD14Retention_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AverageD28Retention": { + "post": { + "operationId": "Analytics-AverageD28Retention", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD28Retention_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageD28Retention_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyActiveWalletsBySegment": { + "post": { + "operationId": "Analytics-MonthlyActiveWalletsBySegment", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyActiveWalletsBySegment_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyActiveWalletsBySegment_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyTransactingWalletsBySegment": { + "post": { + "operationId": "Analytics-MonthlyTransactingWalletsBySegment", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyTransactingWalletsBySegment_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyTransactingWalletsBySegment_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WeeklyActiveWallets": { + "post": { + "operationId": "Analytics-WeeklyActiveWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WeeklyActiveWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WeeklyActiveWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalViews": { + "post": { + "operationId": "Analytics-TotalViews", + "tags": [ + "Analytics" + ], + "summary": "Views Analytics", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalViews_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalViews_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyViews": { + "post": { + "operationId": "Analytics-DailyViews", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyViews_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyViews_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/ViewsByCountry": { + "post": { + "operationId": "Analytics-ViewsByCountry", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ViewsByCountry_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ViewsByCountry_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/ViewsByDevice": { + "post": { + "operationId": "Analytics-ViewsByDevice", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ViewsByDevice_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ViewsByDevice_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/ViewsByOS": { + "post": { + "operationId": "Analytics-ViewsByOS", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ViewsByOS_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ViewsByOS_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyUniqueVisitors": { + "post": { + "operationId": "Analytics-DailyUniqueVisitors", + "tags": [ + "Analytics" + ], + "summary": "Visitors Analytics", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyUniqueVisitors_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyUniqueVisitors_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyUniqueVisitors": { + "post": { + "operationId": "Analytics-MonthlyUniqueVisitors", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyUniqueVisitors_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyUniqueVisitors_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/ActiveSessions": { + "post": { + "operationId": "Analytics-ActiveSessions", + "tags": [ + "Analytics" + ], + "summary": "Real-time Analytics", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ActiveSessions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_ActiveSessions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/UserEvents": { + "post": { + "operationId": "Analytics-UserEvents", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_UserEvents_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_UserEvents_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalWallets": { + "post": { + "operationId": "Analytics-EcosystemTotalWallets", + "tags": [ + "Analytics" + ], + "summary": "Ecosystem Analytics", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalProjects": { + "post": { + "operationId": "Analytics-EcosystemTotalProjects", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalProjects_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalProjects_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalProjectsCreated": { + "post": { + "operationId": "Analytics-EcosystemTotalProjectsCreated", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalProjectsCreated_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalProjectsCreated_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalActiveProjects": { + "post": { + "operationId": "Analytics-EcosystemTotalActiveProjects", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalActiveProjects_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalActiveProjects_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalDevelopers": { + "post": { + "operationId": "Analytics-EcosystemTotalDevelopers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalDevelopers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalDevelopers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemActiveDevelopers": { + "post": { + "operationId": "Analytics-EcosystemActiveDevelopers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemActiveDevelopers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemActiveDevelopers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemDailyActiveWallets": { + "post": { + "operationId": "Analytics-EcosystemDailyActiveWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemDailyActiveWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemDailyActiveWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemMonthlyActiveWallets": { + "post": { + "operationId": "Analytics-EcosystemMonthlyActiveWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyActiveWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyActiveWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemDailyNewProjects": { + "post": { + "operationId": "Analytics-EcosystemDailyNewProjects", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemDailyNewProjects_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemDailyNewProjects_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemMonthlyNewProjects": { + "post": { + "operationId": "Analytics-EcosystemMonthlyNewProjects", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyNewProjects_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyNewProjects_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalContracts": { + "post": { + "operationId": "Analytics-EcosystemTotalContracts", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalContracts_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalContracts_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemMonthlyContracts": { + "post": { + "operationId": "Analytics-EcosystemMonthlyContracts", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyContracts_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyContracts_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTopProjectsByActiveWallets": { + "post": { + "operationId": "Analytics-EcosystemTopProjectsByActiveWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByActiveWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByActiveWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTopProjectsByNewWallets": { + "post": { + "operationId": "Analytics-EcosystemTopProjectsByNewWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByNewWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByNewWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemWalletsCreated": { + "post": { + "operationId": "Analytics-EcosystemWalletsCreated", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsCreated_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsCreated_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemMonthlyActiveEcoWallets": { + "post": { + "operationId": "Analytics-EcosystemMonthlyActiveEcoWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyActiveEcoWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyActiveEcoWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemDailyNewWallets": { + "post": { + "operationId": "Analytics-EcosystemDailyNewWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemDailyNewWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemDailyNewWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemMonthlyNewWallets": { + "post": { + "operationId": "Analytics-EcosystemMonthlyNewWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyNewWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyNewWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTopProjectsByDeveloperActivity": { + "post": { + "operationId": "Analytics-EcosystemTopProjectsByDeveloperActivity", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByDeveloperActivity_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByDeveloperActivity_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTopProjectsByNewDevelopers": { + "post": { + "operationId": "Analytics-EcosystemTopProjectsByNewDevelopers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByNewDevelopers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByNewDevelopers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalMarketplaces": { + "post": { + "operationId": "Analytics-EcosystemTotalMarketplaces", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalMarketplaces_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalMarketplaces_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemMonthlyMarketplaces": { + "post": { + "operationId": "Analytics-EcosystemMonthlyMarketplaces", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyMarketplaces_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyMarketplaces_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemActiveMarketplaces": { + "post": { + "operationId": "Analytics-EcosystemActiveMarketplaces", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemActiveMarketplaces_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemActiveMarketplaces_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemWalletsByCountry": { + "post": { + "operationId": "Analytics-EcosystemWalletsByCountry", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByCountry_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByCountry_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemWalletsByDevice": { + "post": { + "operationId": "Analytics-EcosystemWalletsByDevice", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByDevice_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByDevice_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemWalletsByOS": { + "post": { + "operationId": "Analytics-EcosystemWalletsByOS", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByOS_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByOS_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemWalletsByBrowser": { + "post": { + "operationId": "Analytics-EcosystemWalletsByBrowser", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByBrowser_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByBrowser_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemWalletsByType": { + "post": { + "operationId": "Analytics-EcosystemWalletsByType", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByType_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByType_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemWalletsByLoginMethod": { + "post": { + "operationId": "Analytics-EcosystemWalletsByLoginMethod", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByLoginMethod_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemWalletsByLoginMethod_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalTransactions": { + "post": { + "operationId": "Analytics-EcosystemTotalTransactions", + "tags": [ + "Analytics" + ], + "summary": "Ecosystem Transaction Analytics", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalTransactions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalTransactions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemMonthlyTransactions": { + "post": { + "operationId": "Analytics-EcosystemMonthlyTransactions", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyTransactions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyTransactions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalTransactingUsers": { + "post": { + "operationId": "Analytics-EcosystemTotalTransactingUsers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalTransactingUsers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalTransactingUsers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemMonthlyTransactingUsers": { + "post": { + "operationId": "Analytics-EcosystemMonthlyTransactingUsers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyTransactingUsers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyTransactingUsers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTotalTransactionVolume": { + "post": { + "operationId": "Analytics-EcosystemTotalTransactionVolume", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalTransactionVolume_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTotalTransactionVolume_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemMonthlyTransactionVolume": { + "post": { + "operationId": "Analytics-EcosystemMonthlyTransactionVolume", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyTransactionVolume_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemMonthlyTransactionVolume_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTopProjectsByTransactions": { + "post": { + "operationId": "Analytics-EcosystemTopProjectsByTransactions", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByTransactions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByTransactions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTopProjectsByTransactingUsers": { + "post": { + "operationId": "Analytics-EcosystemTopProjectsByTransactingUsers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByTransactingUsers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByTransactingUsers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/EcosystemTopProjectsByTransactionVolume": { + "post": { + "operationId": "Analytics-EcosystemTopProjectsByTransactionVolume", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByTransactionVolume_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_EcosystemTopProjectsByTransactionVolume_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalProjectTransactions": { + "post": { + "operationId": "Analytics-TotalProjectTransactions", + "tags": [ + "Analytics" + ], + "summary": "Transaction Analytics", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyProjectTransactions": { + "post": { + "operationId": "Analytics-DailyProjectTransactions", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyProjectTransactions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyProjectTransactions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyProjectTransactions": { + "post": { + "operationId": "Analytics-MonthlyProjectTransactions", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyProjectTransactions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyProjectTransactions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalProjectTransactionsByChain": { + "post": { + "operationId": "Analytics-TotalProjectTransactionsByChain", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactionsByChain_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactionsByChain_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalProjectTransactionsByCollection": { + "post": { + "operationId": "Analytics-TotalProjectTransactionsByCollection", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactionsByCollection_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactionsByCollection_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalProjectTransactionsByToken": { + "post": { + "operationId": "Analytics-TotalProjectTransactionsByToken", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactionsByToken_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactionsByToken_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyProjectTransactionsByCollection": { + "post": { + "operationId": "Analytics-MonthlyProjectTransactionsByCollection", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyProjectTransactionsByCollection_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyProjectTransactionsByCollection_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalProjectTransactionVolume": { + "post": { + "operationId": "Analytics-TotalProjectTransactionVolume", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactionVolume_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectTransactionVolume_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyProjectVolume": { + "post": { + "operationId": "Analytics-DailyProjectVolume", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyProjectVolume_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyProjectVolume_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyProjectVolume": { + "post": { + "operationId": "Analytics-MonthlyProjectVolume", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyProjectVolume_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyProjectVolume_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalProjectVolumeByChain": { + "post": { + "operationId": "Analytics-TotalProjectVolumeByChain", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectVolumeByChain_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectVolumeByChain_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalProjectVolumeByCollection": { + "post": { + "operationId": "Analytics-TotalProjectVolumeByCollection", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectVolumeByCollection_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectVolumeByCollection_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalProjectVolumeByToken": { + "post": { + "operationId": "Analytics-TotalProjectVolumeByToken", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectVolumeByToken_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalProjectVolumeByToken_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyProjectVolumeByCollection": { + "post": { + "operationId": "Analytics-MonthlyProjectVolumeByCollection", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyProjectVolumeByCollection_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyProjectVolumeByCollection_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TransactionVolumePerUser": { + "post": { + "operationId": "Analytics-TransactionVolumePerUser", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TransactionVolumePerUser_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TransactionVolumePerUser_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TransactionVolumePerTransactingUser": { + "post": { + "operationId": "Analytics-TransactionVolumePerTransactingUser", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TransactionVolumePerTransactingUser_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TransactionVolumePerTransactingUser_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalTransactingUsers": { + "post": { + "operationId": "Analytics-TotalTransactingUsers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalTransactingUsers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalTransactingUsers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyUniqueTransactingUsers": { + "post": { + "operationId": "Analytics-DailyUniqueTransactingUsers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyUniqueTransactingUsers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyUniqueTransactingUsers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyUniqueTransactingUsers": { + "post": { + "operationId": "Analytics-MonthlyUniqueTransactingUsers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyUniqueTransactingUsers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyUniqueTransactingUsers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TransactingUserConversion": { + "post": { + "operationId": "Analytics-TransactingUserConversion", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TransactingUserConversion_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TransactingUserConversion_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyTransactingUserConversion": { + "post": { + "operationId": "Analytics-DailyTransactingUserConversion", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyTransactingUserConversion_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyTransactingUserConversion_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyTransactingUserConversion": { + "post": { + "operationId": "Analytics-MonthlyTransactingUserConversion", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyTransactingUserConversion_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyTransactingUserConversion_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/RepeatingTransactingUserPercentage": { + "post": { + "operationId": "Analytics-RepeatingTransactingUserPercentage", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_RepeatingTransactingUserPercentage_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_RepeatingTransactingUserPercentage_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/WeekOnWeekTransactingUserRetention": { + "post": { + "operationId": "Analytics-WeekOnWeekTransactingUserRetention", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WeekOnWeekTransactingUserRetention_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_WeekOnWeekTransactingUserRetention_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthOnMonthTransactingUserRetention": { + "post": { + "operationId": "Analytics-MonthOnMonthTransactingUserRetention", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthOnMonthTransactingUserRetention_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthOnMonthTransactingUserRetention_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AvgBalanceOfSequenceWallets": { + "post": { + "operationId": "Analytics-AvgBalanceOfSequenceWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AvgBalanceOfSequenceWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AvgBalanceOfSequenceWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AvgBalanceOfTransactingSequenceWallets": { + "post": { + "operationId": "Analytics-AvgBalanceOfTransactingSequenceWallets", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AvgBalanceOfTransactingSequenceWallets_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AvgBalanceOfTransactingSequenceWallets_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalMarketplaceTransactions": { + "post": { + "operationId": "Analytics-TotalMarketplaceTransactions", + "tags": [ + "Analytics" + ], + "summary": "Marketplace Analytics", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceTransactions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceTransactions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyMarketplaceTransactions": { + "post": { + "operationId": "Analytics-DailyMarketplaceTransactions", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyMarketplaceTransactions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyMarketplaceTransactions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/MonthlyMarketplaceTransactions": { + "post": { + "operationId": "Analytics-MonthlyMarketplaceTransactions", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyMarketplaceTransactions_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_MonthlyMarketplaceTransactions_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalMarketplaceItemsTransacted": { + "post": { + "operationId": "Analytics-TotalMarketplaceItemsTransacted", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsTransacted_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsTransacted_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalMarketplaceItemsPurchased": { + "post": { + "operationId": "Analytics-TotalMarketplaceItemsPurchased", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsPurchased_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsPurchased_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalMarketplaceItemsSold": { + "post": { + "operationId": "Analytics-TotalMarketplaceItemsSold", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsSold_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsSold_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalMarketplaceItemsListed": { + "post": { + "operationId": "Analytics-TotalMarketplaceItemsListed", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsListed_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsListed_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalMarketplaceItemsOffered": { + "post": { + "operationId": "Analytics-TotalMarketplaceItemsOffered", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsOffered_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsOffered_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TotalMarketplaceTransactingUsers": { + "post": { + "operationId": "Analytics-TotalMarketplaceTransactingUsers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceTransactingUsers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TotalMarketplaceTransactingUsers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ + { + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" + }, + { + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } } } } } - }, - "Builder_WeeklyActiveWallets_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } } }, - "securitySchemes": { - "ApiKeyAuth": { - "type": "apiKey", - "in": "header", - "description": "Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI", - "name": "X-Access-Key" - }, - "BearerAuth": { - "type": "http", - "scheme": "bearer", - "bearerFormat": "JWT", - "description": "Secret JWT token for authenticating requests obtained from Sequence Builder - should not be exposed publicly." - } - } - }, - "info": { - "title": "Analytics Api", - "version": "" - }, - "openapi": "3.0.0", - "paths": { - "/rpc/Analytics/TotalCompute": { + "/rpc/Analytics/TotalMarketplaceVolume": { "post": { - "summary": "TotalCompute", - "description": "Get total compute statistics", + "operationId": "Analytics-TotalMarketplaceVolume", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_TotalCompute_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "DAY" - } - } - } + "$ref": "#/components/schemas/Analytics_TotalMarketplaceVolume_Request" } } } @@ -4659,23 +15049,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_TotalCompute_Response" - }, - "examples": { - "0": { - "value": { - "computeStats": [ - { - "value": 100, - "label": "2024-09-30" - }, - { - "value": 150, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TotalMarketplaceVolume_Response" } } } @@ -4702,64 +15076,92 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ { - "$ref": "#/components/schemas/ErrorNotFound" + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" }, { - "$ref": "#/components/schemas/ErrorUserNotFound" + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" }, { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/DailyMarketplaceVolume": { + "post": { + "operationId": "Analytics-DailyMarketplaceVolume", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyMarketplaceVolume_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_DailyMarketplaceVolume_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ { - "$ref": "#/components/schemas/ErrorInvalidTier" + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" }, { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" }, { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" }, { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -4786,39 +15188,21 @@ } } } - }, - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/ComputeByService": { + "/rpc/Analytics/MonthlyMarketplaceVolume": { "post": { - "summary": "ComputeByService", + "operationId": "Analytics-MonthlyMarketplaceVolume", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_ComputeByService_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "DAY" - } - } - } + "$ref": "#/components/schemas/Analytics_MonthlyMarketplaceVolume_Request" } } } @@ -4829,22 +15213,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_ComputeByService_Response" - }, - "examples": { - "0": { - "value": { - "computeStats": [ - { - "value": { - "service1": 100, - "service2": 150 - }, - "label": "2024-09-30" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_MonthlyMarketplaceVolume_Response" } } } @@ -4871,64 +15240,92 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ { - "$ref": "#/components/schemas/ErrorNotFound" + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" }, { - "$ref": "#/components/schemas/ErrorUserNotFound" + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" }, { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/AverageMarketplaceTransactionPrice": { + "post": { + "operationId": "Analytics-AverageMarketplaceTransactionPrice", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageMarketplaceTransactionPrice_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_AverageMarketplaceTransactionPrice_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ { - "$ref": "#/components/schemas/ErrorInvalidTier" + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" }, { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" }, { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" }, { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -4955,40 +15352,21 @@ } } } - }, - "description": "Get compute statistics by service", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/DailyComputeByType": { + "/rpc/Analytics/TotalMarketplaceTradedCollections": { "post": { - "summary": "DailyComputeByType", + "operationId": "Analytics-TotalMarketplaceTradedCollections", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_DailyComputeByType_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "DAY" - } - } - } + "$ref": "#/components/schemas/Analytics_TotalMarketplaceTradedCollections_Request" } } } @@ -4999,22 +15377,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_DailyComputeByType_Response" - }, - "examples": { - "0": { - "value": { - "computeStats": [ - { - "value": { - "type1": 100, - "type2": 150 - }, - "label": "2024-09-30" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TotalMarketplaceTradedCollections_Response" } } } @@ -5041,64 +15404,92 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, + } + ] + } + } + } + }, + "5XX": { + "description": "Server error", + "content": { + "application/json": { + "schema": { + "oneOf": [ { - "$ref": "#/components/schemas/ErrorNotFound" + "$ref": "#/components/schemas/ErrorWebrpcBadResponse" }, { - "$ref": "#/components/schemas/ErrorUserNotFound" + "$ref": "#/components/schemas/ErrorWebrpcServerPanic" }, { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, + "$ref": "#/components/schemas/ErrorWebrpcInternalError" + } + ] + } + } + } + } + } + } + }, + "/rpc/Analytics/TopMarketplaceBuyers": { + "post": { + "operationId": "Analytics-TopMarketplaceBuyers", + "tags": [ + "Analytics" + ], + "summary": "", + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TopMarketplaceBuyers_Request" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/Analytics_TopMarketplaceBuyers_Response" + } + } + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ { - "$ref": "#/components/schemas/ErrorInvalidTier" + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" }, { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" }, { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" }, { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -5125,28 +15516,21 @@ } } } - }, - "description": "Get daily compute statistics by type", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/DailyComputeByService": { + "/rpc/Analytics/TopMarketplaceSellers": { "post": { - "summary": "DailyComputeByService", + "operationId": "Analytics-TopMarketplaceSellers", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_DailyComputeByService_Request" + "$ref": "#/components/schemas/Analytics_TopMarketplaceSellers_Request" } } } @@ -5157,7 +15541,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_DailyComputeByService_Response" + "$ref": "#/components/schemas/Analytics_TopMarketplaceSellers_Response" } } } @@ -5184,64 +15568,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -5268,24 +15598,21 @@ } } } - }, - "security": [ - { - "ApiKeyAuth": [ - "AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI" - ] - } - ] + } } }, - "/rpc/Analytics/GetOrderbookCollections": { + "/rpc/Analytics/MarketplaceCollectionTransactions": { "post": { - "summary": "GetOrderbookCollections", + "operationId": "Analytics-MarketplaceCollectionTransactions", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_GetOrderbookCollections_Request" + "$ref": "#/components/schemas/Analytics_MarketplaceCollectionTransactions_Request" } } } @@ -5296,7 +15623,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_GetOrderbookCollections_Response" + "$ref": "#/components/schemas/Analytics_MarketplaceCollectionTransactions_Response" } } } @@ -5323,64 +15650,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -5407,35 +15680,21 @@ } } } - }, - "security": [ - { - "ApiKeyAuth": [ - "AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsTotal": { + "/rpc/Analytics/TotalShopTransactions": { "post": { - "summary": "WalletsTotal", + "operationId": "Analytics-TotalShopTransactions", + "tags": [ + "Analytics" + ], + "summary": "Shop Analytics", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsTotal_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TotalShopTransactions_Request" } } } @@ -5446,23 +15705,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsTotal_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TotalShopTransactions_Response" } } } @@ -5489,64 +15732,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -5573,40 +15762,21 @@ } } } - }, - "description": "Get total wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsDaily": { + "/rpc/Analytics/DailyShopTransactions": { "post": { - "summary": "WalletsDaily", + "operationId": "Analytics-DailyShopTransactions", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsDaily_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "DAY" - } - } - } + "$ref": "#/components/schemas/Analytics_DailyShopTransactions_Request" } } } @@ -5617,23 +15787,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsDaily_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 2, - "label": "2024-09-23" - }, - { - "value": 3, - "label": "2024-09-29" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_DailyShopTransactions_Response" } } } @@ -5660,64 +15814,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -5744,40 +15844,21 @@ } } } - }, - "description": "Get daily wallet statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsMonthly": { + "/rpc/Analytics/MonthlyShopTransactions": { "post": { - "summary": "WalletsMonthly", + "operationId": "Analytics-MonthlyShopTransactions", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsMonthly_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "MONTH" - } - } - } + "$ref": "#/components/schemas/Analytics_MonthlyShopTransactions_Request" } } } @@ -5788,23 +15869,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsMonthly_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 20, - "label": "2024-09" - }, - { - "value": 30, - "label": "2024-10" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_MonthlyShopTransactions_Response" } } } @@ -5828,67 +15893,13 @@ "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -5915,39 +15926,21 @@ } } } - }, - "description": "Get monthly wallet statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsByCountry": { + "/rpc/Analytics/TotalShopItemsPurchased": { "post": { - "summary": "WalletsByCountry", + "operationId": "Analytics-TotalShopItemsPurchased", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsByCountry_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TotalShopItemsPurchased_Request" } } } @@ -5958,23 +15951,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsByCountry_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 50, - "label": "US" - }, - { - "value": 30, - "label": "UK" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TotalShopItemsPurchased_Response" } } } @@ -6001,64 +15978,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -6085,39 +16008,21 @@ } } } - }, - "description": "Get wallet statistics by country", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsByDevice": { + "/rpc/Analytics/TotalShopPurchasers": { "post": { - "summary": "WalletsByDevice", + "operationId": "Analytics-TotalShopPurchasers", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsByDevice_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TotalShopPurchasers_Request" } } } @@ -6128,23 +16033,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsByDevice_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 200, - "label": "Mobile" - }, - { - "value": 150, - "label": "Desktop" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TotalShopPurchasers_Response" } } } @@ -6171,64 +16060,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -6255,39 +16090,21 @@ } } } - }, - "description": "Get wallet statistics by device", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsByBrowser": { + "/rpc/Analytics/TotalShopVolume": { "post": { - "summary": "WalletsByBrowser", + "operationId": "Analytics-TotalShopVolume", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsByBrowser_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TotalShopVolume_Request" } } } @@ -6298,23 +16115,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsByBrowser_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 150, - "label": "Chrome" - }, - { - "value": 100, - "label": "Firefox" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TotalShopVolume_Response" } } } @@ -6341,64 +16142,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -6425,39 +16172,21 @@ } } } - }, - "description": "Get wallet statistics by browser", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsByOS": { + "/rpc/Analytics/DailyShopVolume": { "post": { - "summary": "WalletsByOS", + "operationId": "Analytics-DailyShopVolume", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsByOS_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_DailyShopVolume_Request" } } } @@ -6468,23 +16197,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsByOS_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 180, - "label": "Windows" - }, - { - "value": 120, - "label": "MacOS" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_DailyShopVolume_Response" } } } @@ -6511,64 +16224,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -6595,39 +16254,21 @@ } } } - }, - "description": "Get wallet statistics by operating system", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsTxnSentTotal": { + "/rpc/Analytics/MonthlyShopVolume": { "post": { - "summary": "WalletsTxnSentTotal", + "operationId": "Analytics-MonthlyShopVolume", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentTotal_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_MonthlyShopVolume_Request" } } } @@ -6638,103 +16279,37 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentTotal_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 1000, - "label": "Total Transactions" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_MonthlyShopVolume_Response" } } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ { - "$ref": "#/components/schemas/ErrorInvalidTier" + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" }, { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" }, { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" }, { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -6761,39 +16336,21 @@ } } } - }, - "description": "Get total transaction statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsTxnSentDaily": { + "/rpc/Analytics/AverageShopPurchasePrice": { "post": { - "summary": "WalletsTxnSentDaily", + "operationId": "Analytics-AverageShopPurchasePrice", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentDaily_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_AverageShopPurchasePrice_Request" } } } @@ -6804,23 +16361,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentDaily_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 45, - "label": "2024-09-30" - }, - { - "value": 52, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_AverageShopPurchasePrice_Response" } } } @@ -6847,64 +16388,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -6931,39 +16418,21 @@ } } } - }, - "description": "Get daily transaction statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WalletsTxnSentMonthly": { + "/rpc/Analytics/TopShopBuyers": { "post": { - "summary": "WalletsTxnSentMonthly", + "operationId": "Analytics-TopShopBuyers", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentMonthly_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TopShopBuyers_Request" } } } @@ -6974,23 +16443,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentMonthly_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TopShopBuyers_Response" } } } @@ -7017,64 +16470,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -7101,39 +16500,21 @@ } } } - }, - "description": "Get monthly transaction statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MarketTxnEventTotal": { + "/rpc/Analytics/ShopCollectionTransactions": { "post": { - "summary": "MarketTxnEventTotal", + "operationId": "Analytics-ShopCollectionTransactions", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventTotal_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_ShopCollectionTransactions_Request" } } } @@ -7144,19 +16525,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventTotal_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 500, - "label": "Total Events" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_ShopCollectionTransactions_Response" } } } @@ -7183,64 +16552,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -7267,39 +16582,21 @@ } } } - }, - "description": "Get total market transaction events", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MarketTxnEventDaily": { + "/rpc/Analytics/TotalMarketplaceItemsSoldByToken": { "post": { - "summary": "MarketTxnEventDaily", + "operationId": "Analytics-TotalMarketplaceItemsSoldByToken", + "tags": [ + "Analytics" + ], + "summary": "Marketplace Token-Level Analytics", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventDaily_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsSoldByToken_Request" } } } @@ -7310,22 +16607,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventDaily_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": { - "buy": 25, - "sell": 20 - }, - "label": "2024-09-30" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TotalMarketplaceItemsSoldByToken_Response" } } } @@ -7352,64 +16634,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -7436,39 +16664,21 @@ } } } - }, - "description": "Get daily market transaction events", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MarketTxnEventMonthly": { + "/rpc/Analytics/TotalShopItemsSoldByToken": { "post": { - "summary": "MarketTxnEventMonthly", + "operationId": "Analytics-TotalShopItemsSoldByToken", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventMonthly_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TotalShopItemsSoldByToken_Request" } } } @@ -7479,23 +16689,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventMonthly_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TotalShopItemsSoldByToken_Response" } } } @@ -7519,67 +16713,13 @@ "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -7606,39 +16746,21 @@ } } } - }, - "description": "Get monthly market transaction statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MarketWalletsTotal": { + "/rpc/Analytics/TrailsTotalTransactionVolume": { "post": { - "summary": "MarketWalletsTotal", + "operationId": "Analytics-TrailsTotalTransactionVolume", + "tags": [ + "Analytics" + ], + "summary": "Trails Analytics - Big Numbers", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsTotal_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTotalTransactionVolume_Request" } } } @@ -7649,19 +16771,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsTotal_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 1500, - "label": "Total Market Wallets" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsTotalTransactionVolume_Response" } } } @@ -7688,64 +16798,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -7772,39 +16828,21 @@ } } } - }, - "description": "Get total market wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MarketWalletsDaily": { + "/rpc/Analytics/TrailsTotalTransactions": { "post": { - "summary": "MarketWalletsDaily", + "operationId": "Analytics-TrailsTotalTransactions", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsDaily_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTotalTransactions_Request" } } } @@ -7815,23 +16853,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsDaily_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 75, - "label": "2024-09-30" - }, - { - "value": 82, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsTotalTransactions_Response" } } } @@ -7858,64 +16880,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -7942,39 +16910,21 @@ } } } - }, - "description": "Get daily market wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MarketWalletsMonthly": { + "/rpc/Analytics/TrailsTotalUniqueTransactingWallets": { "post": { - "summary": "MarketWalletsMonthly", + "operationId": "Analytics-TrailsTotalUniqueTransactingWallets", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsMonthly_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTotalUniqueTransactingWallets_Request" } } } @@ -7985,23 +16935,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsMonthly_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 450, - "label": "2024-09" - }, - { - "value": 520, - "label": "2024-10" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsTotalUniqueTransactingWallets_Response" } } } @@ -8028,64 +16962,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -8112,39 +16992,21 @@ } } } - }, - "description": "Get monthly market wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/TotalWalletTxnConversionRate": { + "/rpc/Analytics/TrailsAverageTransactionDuration": { "post": { - "summary": "TotalWalletTxnConversionRate", + "operationId": "Analytics-TrailsAverageTransactionDuration", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_TotalWalletTxnConversionRate_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsAverageTransactionDuration_Request" } } } @@ -8155,19 +17017,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_TotalWalletTxnConversionRate_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 0.45, - "label": "Conversion Rate" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsAverageTransactionDuration_Response" } } } @@ -8194,64 +17044,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -8278,39 +17074,21 @@ } } } - }, - "description": "Get total wallet transaction conversion rate", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/DailyWalletTxnConversionRate": { + "/rpc/Analytics/TrailsPaymentCompletionPercentage": { "post": { - "summary": "DailyWalletTxnConversionRate", + "operationId": "Analytics-TrailsPaymentCompletionPercentage", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_DailyWalletTxnConversionRate_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsPaymentCompletionPercentage_Request" } } } @@ -8321,107 +17099,37 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_DailyWalletTxnConversionRate_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 0.42, - "label": "2024-09-30" - }, - { - "value": 0.45, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsPaymentCompletionPercentage_Response" } } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ { - "$ref": "#/components/schemas/ErrorInvalidTier" + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" }, { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" }, { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" }, { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -8448,39 +17156,21 @@ } } } - }, - "description": "Get daily wallet transaction conversion rate", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MonthlyWalletTxnConversionRate": { + "/rpc/Analytics/TrailsTransactionsByDomain": { "post": { - "summary": "MonthlyWalletTxnConversionRate", + "operationId": "Analytics-TrailsTransactionsByDomain", + "tags": [ + "Analytics" + ], + "summary": "Trails Analytics - Category Charts", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MonthlyWalletTxnConversionRate_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByDomain_Request" } } } @@ -8491,23 +17181,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MonthlyWalletTxnConversionRate_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByDomain_Response" } } } @@ -8534,64 +17208,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -8618,39 +17238,21 @@ } } } - }, - "description": "Get monthly market conversions on your marketplace", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/DailyNewWallets": { + "/rpc/Analytics/TrailsTransactionsByAmount": { "post": { - "summary": "DailyNewWallets", + "operationId": "Analytics-TrailsTransactionsByAmount", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_DailyNewWallets_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByAmount_Request" } } } @@ -8661,23 +17263,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_DailyNewWallets_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 25, - "label": "2024-09-30" - }, - { - "value": 30, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByAmount_Response" } } } @@ -8704,64 +17290,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -8788,39 +17320,21 @@ } } } - }, - "description": "Get daily new wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MonthlyNewWallets": { + "/rpc/Analytics/TrailsDailyTransactionVolume": { "post": { - "summary": "MonthlyNewWallets", + "operationId": "Analytics-TrailsDailyTransactionVolume", + "tags": [ + "Analytics" + ], + "summary": "Trails Analytics - Daily Time Series", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MonthlyNewWallets_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyTransactionVolume_Request" } } } @@ -8831,23 +17345,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MonthlyNewWallets_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 750, - "label": "2024-09" - }, - { - "value": 820, - "label": "2024-10" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyTransactionVolume_Response" } } } @@ -8874,64 +17372,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -8958,39 +17402,21 @@ } } } - }, - "description": "Get monthly new wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/TotalNewWallets": { + "/rpc/Analytics/TrailsDailyTransactions": { "post": { - "summary": "TotalNewWallets", + "operationId": "Analytics-TrailsDailyTransactions", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_TotalNewWallets_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyTransactions_Request" } } } @@ -9001,23 +17427,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_TotalNewWallets_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyTransactions_Response" } } } @@ -9044,64 +17454,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -9128,39 +17484,21 @@ } } } - }, - "description": "Get Total Wallets over a time interval", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/AverageDAU": { + "/rpc/Analytics/TrailsDailyTransactingWallets": { "post": { - "summary": "AverageDAU", + "operationId": "Analytics-TrailsDailyTransactingWallets", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageDAU_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyTransactingWallets_Request" } } } @@ -9171,23 +17509,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageDAU_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyTransactingWallets_Response" } } } @@ -9211,67 +17533,13 @@ "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -9298,39 +17566,21 @@ } } } - }, - "description": "Get average daily active users", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/RollingStickiness": { + "/rpc/Analytics/TrailsDailyActiveWallets": { "post": { - "summary": "RollingStickiness", + "operationId": "Analytics-TrailsDailyActiveWallets", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_RollingStickiness_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyActiveWallets_Request" } } } @@ -9341,23 +17591,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_RollingStickiness_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.35, - "label": "2024-09-30" - }, - { - "value": 0.38, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyActiveWallets_Response" } } } @@ -9384,64 +17618,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -9468,39 +17648,21 @@ } } } - }, - "description": "Get rolling stickiness metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/AverageStickiness": { + "/rpc/Analytics/TrailsDailyAverageTransactionDuration": { "post": { - "summary": "AverageStickiness", + "operationId": "Analytics-TrailsDailyAverageTransactionDuration", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageStickiness_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyAverageTransactionDuration_Request" } } } @@ -9511,23 +17673,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageStickiness_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyAverageTransactionDuration_Response" } } } @@ -9554,64 +17700,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -9638,39 +17730,21 @@ } } } - }, - "description": "Get average stickiness metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/D1RetentionByCohort": { + "/rpc/Analytics/TrailsDailyPaymentCompletionPercentage": { "post": { - "summary": "D1RetentionByCohort", + "operationId": "Analytics-TrailsDailyPaymentCompletionPercentage", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D1RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyPaymentCompletionPercentage_Request" } } } @@ -9681,23 +17755,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D1RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.65, - "label": "2024-09-30" - }, - { - "value": 0.68, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsDailyPaymentCompletionPercentage_Response" } } } @@ -9724,64 +17782,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -9808,39 +17812,21 @@ } } } - }, - "description": "Get D1 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/D3RetentionByCohort": { + "/rpc/Analytics/TrailsMonthlyTransactionVolume": { "post": { - "summary": "D3RetentionByCohort", + "operationId": "Analytics-TrailsMonthlyTransactionVolume", + "tags": [ + "Analytics" + ], + "summary": "Trails Analytics - Monthly Time Series", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D3RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyTransactionVolume_Request" } } } @@ -9851,23 +17837,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D3RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.45, - "label": "2024-09-30" - }, - { - "value": 0.48, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyTransactionVolume_Response" } } } @@ -9894,64 +17864,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -9978,39 +17894,21 @@ } } } - }, - "description": "Get D3 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/D7RetentionByCohort": { + "/rpc/Analytics/TrailsMonthlyTransactions": { "post": { - "summary": "D7RetentionByCohort", + "operationId": "Analytics-TrailsMonthlyTransactions", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D7RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyTransactions_Request" } } } @@ -10021,107 +17919,37 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D7RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.35, - "label": "2024-09-30" - }, - { - "value": 0.38, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyTransactions_Response" } } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, + } + }, + "4XX": { + "description": "Client error", + "content": { + "application/json": { + "schema": { + "oneOf": [ { - "$ref": "#/components/schemas/ErrorInvalidTier" + "$ref": "#/components/schemas/ErrorWebrpcEndpoint" }, { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" + "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" }, { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" + "$ref": "#/components/schemas/ErrorWebrpcBadRoute" }, { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" + "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -10148,39 +17976,21 @@ } } } - }, - "description": "Get D7 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/D14RetentionByCohort": { + "/rpc/Analytics/TrailsMonthlyTransactingWallets": { "post": { - "summary": "D14RetentionByCohort", + "operationId": "Analytics-TrailsMonthlyTransactingWallets", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D14RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyTransactingWallets_Request" } } } @@ -10191,23 +18001,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D14RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.25, - "label": "2024-09-30" - }, - { - "value": 0.28, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyTransactingWallets_Response" } } } @@ -10234,64 +18028,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -10318,39 +18058,21 @@ } } } - }, - "description": "Get D14 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/D28RetentionByCohort": { + "/rpc/Analytics/TrailsMonthlyActiveWallets": { "post": { - "summary": "D28RetentionByCohort", + "operationId": "Analytics-TrailsMonthlyActiveWallets", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D28RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyActiveWallets_Request" } } } @@ -10361,23 +18083,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_D28RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.15, - "label": "2024-09-30" - }, - { - "value": 0.18, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyActiveWallets_Response" } } } @@ -10404,64 +18110,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -10488,39 +18140,21 @@ } } } - }, - "description": "Get D28 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/AverageD1Retention": { + "/rpc/Analytics/TrailsMonthlyAverageTransactionDuration": { "post": { - "summary": "AverageD1Retention", + "operationId": "Analytics-TrailsMonthlyAverageTransactionDuration", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD1Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyAverageTransactionDuration_Request" } } } @@ -10531,23 +18165,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD1Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyAverageTransactionDuration_Response" } } } @@ -10574,64 +18192,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -10658,39 +18222,21 @@ } } } - }, - "description": "Get average D1 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/AverageD3Retention": { + "/rpc/Analytics/TrailsMonthlyPaymentCompletionPercentage": { "post": { - "summary": "AverageD3Retention", + "operationId": "Analytics-TrailsMonthlyPaymentCompletionPercentage", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD3Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyPaymentCompletionPercentage_Request" } } } @@ -10701,23 +18247,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD3Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsMonthlyPaymentCompletionPercentage_Response" } } } @@ -10744,64 +18274,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -10828,39 +18304,21 @@ } } } - }, - "description": "Get average D3 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/AverageD7Retention": { + "/rpc/Analytics/TrailsTransactionsByMode": { "post": { - "summary": "AverageD7Retention", + "operationId": "Analytics-TrailsTransactionsByMode", + "tags": [ + "Analytics" + ], + "summary": "Trails Analytics - Tables", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD7Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByMode_Request" } } } @@ -10871,23 +18329,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD7Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByMode_Response" } } } @@ -10911,67 +18353,13 @@ "$ref": "#/components/schemas/ErrorWebrpcBadMethod" }, { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" + "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorInvitationExpired" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" + "$ref": "#/components/schemas/ErrorWebrpcStreamLost" } ] } @@ -10998,39 +18386,21 @@ } } } - }, - "description": "Get average D7 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/AverageD14Retention": { + "/rpc/Analytics/TrailsTransactionsByRoute": { "post": { - "summary": "AverageD14Retention", + "operationId": "Analytics-TrailsTransactionsByRoute", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD14Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByRoute_Request" } } } @@ -11041,23 +18411,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD14Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByRoute_Response" } } } @@ -11084,64 +18438,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -11168,39 +18468,21 @@ } } } - }, - "description": "Get average D14 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/AverageD28Retention": { + "/rpc/Analytics/TrailsTransactionsByProvider": { "post": { - "summary": "AverageD28Retention", + "operationId": "Analytics-TrailsTransactionsByProvider", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD28Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByProvider_Request" } } } @@ -11211,23 +18493,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_AverageD28Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByProvider_Response" } } } @@ -11254,64 +18520,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -11338,39 +18550,21 @@ } } } - }, - "description": "Get average D28 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MonthlyActiveWalletsBySegment": { + "/rpc/Analytics/TrailsTransactionsByCountry": { "post": { - "summary": "MonthlyActiveWalletsBySegment", + "operationId": "Analytics-TrailsTransactionsByCountry", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MonthlyActiveWalletsBySegment_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByCountry_Request" } } } @@ -11381,35 +18575,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MonthlyActiveWalletsBySegment_Response" - }, - "examples": { - "0": { - "value": { - "data": { - "segment1": [ - { - "value": 150, - "label": "2024-09" - }, - { - "value": 180, - "label": "2024-10" - } - ], - "segment2": [ - { - "value": 120, - "label": "2024-09" - }, - { - "value": 140, - "label": "2024-10" - } - ] - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTransactionsByCountry_Response" } } } @@ -11436,64 +18602,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -11520,39 +18632,21 @@ } } } - }, - "description": "Get monthly active wallets by segment", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/MonthlyTransactingWalletsBySegment": { + "/rpc/Analytics/TrailsTopTransactions": { "post": { - "summary": "MonthlyTransactingWalletsBySegment", + "operationId": "Analytics-TrailsTopTransactions", + "tags": [ + "Analytics" + ], + "summary": "", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MonthlyTransactingWalletsBySegment_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTopTransactions_Request" } } } @@ -11563,35 +18657,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_MonthlyTransactingWalletsBySegment_Response" - }, - "examples": { - "0": { - "value": { - "data": { - "segment1": [ - { - "value": 100, - "label": "2024-09" - }, - { - "value": 120, - "label": "2024-10" - } - ], - "segment2": [ - { - "value": 80, - "label": "2024-09" - }, - { - "value": 95, - "label": "2024-10" - } - ] - } - } - } + "$ref": "#/components/schemas/Analytics_TrailsTopTransactions_Response" } } } @@ -11618,64 +18684,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -11702,39 +18714,21 @@ } } } - }, - "description": "Get monthly transacting wallets by segment", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } }, - "/rpc/Analytics/WeeklyActiveWallets": { + "/rpc/Analytics/ExportTrailsTransactions": { "post": { - "summary": "WeeklyActiveWallets", + "operationId": "Analytics-ExportTrailsTransactions", + "tags": [ + "Analytics" + ], + "summary": "Trails Analytics - Export (returns all data without limit for CSV export)", "requestBody": { "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WeeklyActiveWallets_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } + "$ref": "#/components/schemas/Analytics_ExportTrailsTransactions_Request" } } } @@ -11745,23 +18739,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/Builder_WeeklyActiveWallets_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 350, - "label": "Week 39" - }, - { - "value": 380, - "label": "Week 40" - } - ] - } - } + "$ref": "#/components/schemas/Analytics_ExportTrailsTransactions_Response" } } } @@ -11788,64 +18766,10 @@ "$ref": "#/components/schemas/ErrorWebrpcBadRequest" }, { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" + "$ref": "#/components/schemas/ErrorWebrpcClientAborted" }, { "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" } ] } @@ -11872,35 +18796,13 @@ } } } - }, - "description": "Get weekly active wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] + } } } }, - "servers": [ - { - "url": "https://api.sequence.app", - "description": "Analytics" - } - ], - "tags": [ - { - "name": "public", - "description": "Endpoints accessible by passing your project-access-key in the header. This is injected whenever you login automatically." - }, + "security": [ { - "name": "secret", - "description": "Endpoints that require a Sequence service token intended to be secret. You can manually generate one on Sequence Builder and pass it as a Bearer Token." + "ApiKeyAuth": [] } ] } diff --git a/es/api-references/analytics/endpoints/analytics-api.json b/es/api-references/analytics/endpoints/analytics-api.json new file mode 100644 index 00000000..7db97ea2 --- /dev/null +++ b/es/api-references/analytics/endpoints/analytics-api.json @@ -0,0 +1 @@ +{"openapi":"3.0.0","info":{"title":"API de Analytics","version":""},"servers":[{"url":"https://api.sequence.app","description":"Analytics"}],"components":{"schemas":{"ErrorWebrpcEndpoint":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcEndpoint"},"code":{"type":"número","example":"0"},"msg":{"type":"cadena","example":"error de endpoint"},"cause":{"type":"cadena"},"status":{"type":"número","example":"400"}}},"ErrorWebrpcRequestFailed":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcRequestFailed"},"code":{"type":"número","example":"-1"},"msg":{"type":"cadena","example":"solicitud fallida"},"cause":{"type":"cadena"},"status":{"type":"número","example":"400"}}},"ErrorWebrpcBadRoute":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcBadRoute"},"code":{"type":"número","example":"-2"},"msg":{"type":"cadena","example":"ruta incorrecta"},"cause":{"type":"cadena"},"status":{"type":"número","example":"404"}}},"ErrorWebrpcBadMethod":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcBadMethod"},"code":{"type":"número","example":"-3"},"msg":{"type":"cadena","example":"método incorrecto"},"cause":{"type":"cadena"},"status":{"type":"número","example":"405"}}},"ErrorWebrpcBadRequest":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcBadRequest"},"code":{"type":"número","example":"-4"},"msg":{"type":"cadena","example":"solicitud incorrecta"},"cause":{"type":"cadena"},"status":{"type":"número","example":"400"}}},"ErrorWebrpcBadResponse":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcBadResponse"},"code":{"type":"número","example":"-5"},"msg":{"type":"cadena","example":"respuesta incorrecta"},"cause":{"type":"cadena"},"status":{"type":"número","example":"500"}}},"ErrorWebrpcServerPanic":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcServerPanic"},"code":{"type":"número","example":"-6"},"msg":{"type":"cadena","example":"pánico del servidor"},"cause":{"type":"cadena"},"status":{"type":"número","example":"500"}}},"ErrorWebrpcInternalError":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcInternalError"},"code":{"type":"número","example":"-7"},"msg":{"type":"cadena","example":"error interno"},"cause":{"type":"cadena"},"status":{"type":"número","example":"500"}}},"ErrorWebrpcClientAborted":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcClientAborted"},"code":{"type":"número","example":"-8"},"msg":{"type":"cadena","example":"solicitud cancelada por el cliente"},"cause":{"type":"cadena"},"status":{"type":"número","example":"400"}}},"ErrorWebrpcStreamLost":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcStreamLost"},"code":{"type":"número","example":"-9"},"msg":{"type":"cadena","example":"flujo perdido"},"cause":{"type":"cadena"},"status":{"type":"número","example":"400"}}},"ErrorWebrpcStreamFinished":{"type":"objeto","required":["error","código","mensaje","estado"],"properties":{"error":{"type":"cadena","example":"WebrpcStreamFinished"},"code":{"type":"número","example":"-10"},"msg":{"type":"cadena","example":"flujo finalizado"},"cause":{"type":"cadena"},"status":{"type":"número","example":"200"}}},"AnalyticsProjectType":{"type":"cadena","description":"Representado como cadena en el servidor","enum":["TODOS","CREADO","RELACIONADO"]},"DateInterval":{"type":"cadena","description":"Representado como uint16 en el servidor","enum":["DÍA","SEMANA","MES"]},"QueryFilter":{"type":"objeto","properties":{"projectId":{"type":"número"},"ecosystemId":{"type":"número"},"startDate":{"type":"cadena"},"endDate":{"type":"cadena"},"dateInterval":{"$ref":"#/components/schemas/DateInterval"},"collections":{"type":"arreglo","description":"[]string","items":{"type":"cadena"}},"tokenId":{"type":"cadena"},"projectType":{"$ref":"#/components/schemas/AnalyticsProjectType"}}},"Chart":{"type":"objeto","required":["valor","etiqueta"],"properties":{"value":{"type":"número"},"label":{"type":"cadena"}}},"ChartWithPercentage":{"type":"objeto","required":["etiqueta","total","porcentaje"],"properties":{"label":{"type":"cadena"},"total":{"type":"número"},"percentage":{"type":"número"}}},"MultiValueChart":{"type":"objeto","required":["valor","etiqueta"],"properties":{"value":{"type":"objeto","description":"map","additionalProperties":{"type":"número"}},"label":{"type":"cadena"}}},"QueryResult":{"type":"objeto","required":["colección","origen","volumenUSD","númeroDeTokens","númeroDeTransacciones"],"properties":{"collection":{"type":"cadena"},"source":{"type":"cadena"},"tokenId":{"type":"cadena"},"volumeUSD":{"type":"número"},"numTokens":{"type":"número"},"numTxns":{"type":"número"}}},"TokenTransactionData":{"type":"objeto","required":["idDeColección","nombreDeColección","idDeToken","nombreDeToken","cantidadesDeÍtems"],"properties":{"collectionId":{"type":"cadena"},"collectionName":{"type":"cadena"},"tokenId":{"type":"cadena"},"tokenName":{"type":"cadena"},"itemQuantities":{"type":"número"}}},"TrailsTransactionByMode":{"type":"objeto","required":["modo","usuariosÚnicosTransaccionando","pagosIniciados","pagosCompletados","porcentajeDeCompletitud","tarifasTotales","volumenTotal"],"properties":{"mode":{"type":"cadena"},"uniqueTransactingUsers":{"type":"número"},"paymentsStarted":{"type":"número"},"paymentsCompleted":{"type":"número"},"completionPercent":{"type":"número"},"totalFees":{"type":"número"},"totalVolume":{"type":"número"}}},"TrailsTransactionByRoute":{"type":"objeto","required":["nombreDeCadenaOrigen","nombreDeCadenaDestino","usuariosÚnicosTransaccionando","pagosIniciados","pagosCompletados","porcentajeDeCompletitud","duraciónPromedioDeTransacción","tarifasDeGas","tarifasTotales","volumenTotal"],"properties":{"origChainName":{"type":"cadena"},"destChainName":{"type":"cadena"},"uniqueTransactingUsers":{"type":"número"},"paymentsStarted":{"type":"número"},"paymentsCompleted":{"type":"número"},"completionPercent":{"type":"número"},"avgTxnDuration":{"type":"número"},"gasFees":{"type":"número"},"totalFees":{"type":"número"},"totalVolume":{"type":"número"}}},"TrailsTransactionByProvider":{"type":"objeto","required":["proveedorDeSwap","proveedorDePuente","usuariosÚnicosTransaccionando","pagosIniciados","pagosCompletados","porcentajeDeCompletitud","duraciónPromedioDeTransacción","tarifasDelProveedor","tarifasTotales","volumenTotal"],"properties":{"providerSwap":{"type":"cadena"},"providerBridge":{"type":"cadena"},"uniqueTransactingUsers":{"type":"número"},"paymentsStarted":{"type":"número"},"paymentsCompleted":{"type":"número"},"completionPercent":{"type":"número"},"avgTxnDuration":{"type":"número"},"providerFees":{"type":"número"},"totalFees":{"type":"número"},"totalVolume":{"type":"número"}}},"TrailsTransactionByCountry":{"type":"objeto","required":["país","walletsTransaccionando","pagosCompletados","porcentajeDeCompletitud","volumenTotal"],"properties":{"country":{"type":"cadena"},"transactingWallets":{"type":"número"},"paymentsCompleted":{"type":"número"},"completionPercent":{"type":"número"},"totalVolume":{"type":"número"}}},"TrailsTransactionDetail":{"type":"objeto","required":["fecha","idDeCheckout","país","proveedor","nombreDeHost","hashDeTransacciónOrigen","hashDeTransacciónDestino","nombreDeCadenaOrigen","nombreDeCadenaDestino","símboloDeTokenOrigen","símboloDeTokenDestino","tarifaDelProveedor","tarifaTotal","volumenTotal"],"properties":{"date":{"type":"cadena"},"checkoutId":{"type":"cadena"},"country":{"type":"cadena"},"provider":{"type":"cadena"},"hostname":{"type":"cadena"},"originTxHash":{"type":"cadena"},"destTxHash":{"type":"cadena"},"origChainName":{"type":"cadena"},"destChainName":{"type":"cadena"},"origTokenSymbol":{"type":"cadena"},"destTokenSymbol":{"type":"cadena"},"providerFee":{"type":"número"},"totalFee":{"type":"número"},"totalVolume":{"type":"número"}}},"Analytics_TotalCompute_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ComputeByService_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyComputeByType_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyComputeByService_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_GetOrderbookCollections_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_CreditsPerDailyActiveUser_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_CreditsPerMonthlyActiveUser_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsTotal_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsDaily_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsMonthly_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByCountry_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByDevice_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByBrowser_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByOS_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByType_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsTxnSentTotal_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsTxnSentDaily_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsTxnSentMonthly_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByOrigin_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ConnectionsByOrigin_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketTxnEventTotal_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketTxnEventDaily_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketTxnEventMonthly_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketWalletsTotal_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketWalletsDaily_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketWalletsMonthly_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalWalletTxnConversionRate_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyWalletTxnConversionRate_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyWalletTxnConversionRate_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyNewWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyNewWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalNewWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageDAU_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_RollingStickiness_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageStickiness_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D1RetentionByCohort_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D3RetentionByCohort_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D7RetentionByCohort_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D14RetentionByCohort_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D28RetentionByCohort_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD1Retention_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD3Retention_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD7Retention_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD14Retention_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD28Retention_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyActiveWalletsBySegment_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyTransactingWalletsBySegment_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WeeklyActiveWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalViews_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyViews_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ViewsByCountry_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ViewsByDevice_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ViewsByOS_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyUniqueVisitors_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyUniqueVisitors_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ActiveSessions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_UserEvents_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalProjects_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalProjectsCreated_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalActiveProjects_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalDevelopers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemActiveDevelopers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemDailyActiveWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyActiveWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemDailyNewProjects_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyNewProjects_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalContracts_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyContracts_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByActiveWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByNewWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsCreated_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyActiveEcoWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemDailyNewWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyNewWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByDeveloperActivity_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByNewDevelopers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalMarketplaces_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyMarketplaces_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemActiveMarketplaces_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByCountry_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByDevice_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByOS_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByBrowser_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByType_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByLoginMethod_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalTransactingUsers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyTransactingUsers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalTransactionVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyTransactionVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByTransactingUsers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByTransactionVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyProjectTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyProjectTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactionsByChain_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactionsByCollection_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactionsByToken_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyProjectTransactionsByCollection_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactionVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyProjectVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyProjectVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectVolumeByChain_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectVolumeByCollection_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectVolumeByToken_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyProjectVolumeByCollection_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TransactionVolumePerUser_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TransactionVolumePerTransactingUser_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalTransactingUsers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyUniqueTransactingUsers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyUniqueTransactingUsers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TransactingUserConversion_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyTransactingUserConversion_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyTransactingUserConversion_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_RepeatingTransactingUserPercentage_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WeekOnWeekTransactingUserRetention_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthOnMonthTransactingUserRetention_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AvgBalanceOfSequenceWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AvgBalanceOfTransactingSequenceWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyMarketplaceTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyMarketplaceTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsTransacted_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsPurchased_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsSold_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsListed_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsOffered_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceTransactingUsers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyMarketplaceVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyMarketplaceVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageMarketplaceTransactionPrice_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceTradedCollections_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TopMarketplaceBuyers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TopMarketplaceSellers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketplaceCollectionTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyShopTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyShopTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopItemsPurchased_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopPurchasers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyShopVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyShopVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageShopPurchasePrice_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TopShopBuyers_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ShopCollectionTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsSoldByToken_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopItemsSoldByToken_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTotalTransactionVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTotalTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTotalUniqueTransactingWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsAverageTransactionDuration_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsPaymentCompletionPercentage_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByDomain_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByAmount_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyTransactionVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyTransactingWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyActiveWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyAverageTransactionDuration_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyPaymentCompletionPercentage_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyTransactionVolume_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyTransactingWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyActiveWallets_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyAverageTransactionDuration_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyPaymentCompletionPercentage_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByMode_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByRoute_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByProvider_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByCountry_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTopTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ExportTrailsTransactions_Request":{"type":"objeto","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalCompute_Response":{"type":"objeto","properties":{"computeStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_ComputeByService_Response":{"type":"objeto","properties":{"computeStats":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_DailyComputeByType_Response":{"type":"objeto","properties":{"computeStats":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_DailyComputeByService_Response":{"type":"objeto","properties":{"computeStats":{"type":"objeto","description":"map","additionalProperties":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_GetOrderbookCollections_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]ResultadoConsulta","items":{"$ref":"#/components/schemas/QueryResult"}}}},"Analytics_CreditsPerDailyActiveUser_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_CreditsPerMonthlyActiveUser_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_WalletsTotal_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsDaily_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsMonthly_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsByCountry_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsByDevice_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsByBrowser_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsByOS_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsByType_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsTxnSentTotal_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsTxnSentDaily_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsTxnSentMonthly_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsByOrigin_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_ConnectionsByOrigin_Response":{"type":"objeto","properties":{"walletStats":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_MarketTxnEventTotal_Response":{"type":"objeto","properties":{"marketStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketTxnEventDaily_Response":{"type":"objeto","properties":{"marketStats":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_MarketTxnEventMonthly_Response":{"type":"objeto","properties":{"marketStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketWalletsTotal_Response":{"type":"objeto","properties":{"marketStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketWalletsDaily_Response":{"type":"objeto","properties":{"marketStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketWalletsMonthly_Response":{"type":"objeto","properties":{"marketStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalWalletTxnConversionRate_Response":{"type":"objeto","properties":{"marketStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyWalletTxnConversionRate_Response":{"type":"objeto","properties":{"marketStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyWalletTxnConversionRate_Response":{"type":"objeto","properties":{"marketStats":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyNewWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyNewWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalNewWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageDAU_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_RollingStickiness_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageStickiness_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D1RetentionByCohort_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D3RetentionByCohort_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D7RetentionByCohort_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D14RetentionByCohort_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D28RetentionByCohort_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD1Retention_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD3Retention_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD7Retention_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD14Retention_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD28Retention_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyActiveWalletsBySegment_Response":{"type":"objeto","properties":{"data":{"type":"objeto","description":"map","additionalProperties":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_MonthlyTransactingWalletsBySegment_Response":{"type":"objeto","properties":{"data":{"type":"objeto","description":"map","additionalProperties":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_WeeklyActiveWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalViews_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyViews_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_ViewsByCountry_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_ViewsByDevice_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_ViewsByOS_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_DailyUniqueVisitors_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_MonthlyUniqueVisitors_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_ActiveSessions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_UserEvents_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalProjects_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalProjectsCreated_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalActiveProjects_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalDevelopers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemActiveDevelopers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemDailyActiveWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyActiveWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemDailyNewProjects_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyNewProjects_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalContracts_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyContracts_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTopProjectsByActiveWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTopProjectsByNewWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemWalletsCreated_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyActiveEcoWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemDailyNewWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyNewWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTopProjectsByDeveloperActivity_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTopProjectsByNewDevelopers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTotalMarketplaces_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyMarketplaces_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemActiveMarketplaces_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemWalletsByCountry_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByDevice_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByOS_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByBrowser_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByType_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoConPorcentaje","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByLoginMethod_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalTransactingUsers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyTransactingUsers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalTransactionVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyTransactionVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTopProjectsByTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTopProjectsByTransactingUsers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTopProjectsByTransactionVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_TotalProjectTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyProjectTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyProjectTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectTransactionsByChain_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectTransactionsByCollection_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectTransactionsByToken_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyProjectTransactionsByCollection_Response":{"type":"objeto","properties":{"data":{"type":"objeto","description":"map","additionalProperties":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_TotalProjectTransactionVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyProjectVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyProjectVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectVolumeByChain_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectVolumeByCollection_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectVolumeByToken_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyProjectVolumeByCollection_Response":{"type":"objeto","properties":{"data":{"type":"objeto","description":"map","additionalProperties":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_TransactionVolumePerUser_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TransactionVolumePerTransactingUser_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalTransactingUsers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyUniqueTransactingUsers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyUniqueTransactingUsers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TransactingUserConversion_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyTransactingUserConversion_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyTransactingUserConversion_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_RepeatingTransactingUserPercentage_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WeekOnWeekTransactingUserRetention_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthOnMonthTransactingUserRetention_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AvgBalanceOfSequenceWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AvgBalanceOfTransactingSequenceWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyMarketplaceTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyMarketplaceTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsTransacted_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsPurchased_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsSold_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsListed_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsOffered_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceTransactingUsers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyMarketplaceVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyMarketplaceVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageMarketplaceTransactionPrice_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceTradedCollections_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TopMarketplaceBuyers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TopMarketplaceSellers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketplaceCollectionTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_TotalShopTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyShopTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyShopTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalShopItemsPurchased_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalShopPurchasers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalShopVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyShopVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyShopVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageShopPurchasePrice_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TopShopBuyers_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_ShopCollectionTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]GráficoMultiValor","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_TotalMarketplaceItemsSoldByToken_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]DatosTransacciónToken","items":{"$ref":"#/components/schemas/TokenTransactionData"}}}},"Analytics_TotalShopItemsSoldByToken_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]DatosTransacciónToken","items":{"$ref":"#/components/schemas/TokenTransactionData"}}}},"Analytics_TrailsTotalTransactionVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTotalTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTotalUniqueTransactingWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsAverageTransactionDuration_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsPaymentCompletionPercentage_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTransactionsByDomain_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTransactionsByAmount_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyTransactionVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyTransactingWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyActiveWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyAverageTransactionDuration_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyPaymentCompletionPercentage_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyTransactionVolume_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyTransactingWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyActiveWallets_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyAverageTransactionDuration_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyPaymentCompletionPercentage_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]Gráfico","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTransactionsByMode_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]TransacciónTrailsPorModo","items":{"$ref":"#/components/schemas/TrailsTransactionByMode"}}}},"Analytics_TrailsTransactionsByRoute_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]TransacciónTrailsPorRuta","items":{"$ref":"#/components/schemas/TrailsTransactionByRoute"}}}},"Analytics_TrailsTransactionsByProvider_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]TransacciónTrailsPorProveedor","items":{"$ref":"#/components/schemas/TrailsTransactionByProvider"}}}},"Analytics_TrailsTransactionsByCountry_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]TransacciónTrailsPorPaís","items":{"$ref":"#/components/schemas/TrailsTransactionByCountry"}}}},"Analytics_TrailsTopTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]DetalleTransacciónTrails","items":{"$ref":"#/components/schemas/TrailsTransactionDetail"}}}},"Analytics_ExportTrailsTransactions_Response":{"type":"objeto","properties":{"data":{"type":"arreglo","description":"[]DetalleTransacciónTrails","items":{"$ref":"#/components/schemas/TrailsTransactionDetail"}}}}}},"paths":{"/rpc/Analytics/TotalCompute":{"post":{"operationId":"Analytics-TotalCompute","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalCompute_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalCompute_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ComputeByService":{"post":{"operationId":"Analytics-ComputeByService","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ComputeByService_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ComputeByService_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyComputeByType":{"post":{"operationId":"Analytics-DailyComputeByType","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyComputeByType_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyComputeByType_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyComputeByService":{"post":{"operationId":"Analytics-DailyComputeByService","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyComputeByService_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyComputeByService_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/GetOrderbookCollections":{"post":{"operationId":"Analytics-GetOrderbookCollections","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_GetOrderbookCollections_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_GetOrderbookCollections_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/CreditsPerDailyActiveUser":{"post":{"operationId":"Analytics-CréditosPorUsuarioActivoDiario","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_CreditsPerDailyActiveUser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_CreditsPerDailyActiveUser_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/CreditsPerMonthlyActiveUser":{"post":{"operationId":"Analytics-CréditosPorUsuarioActivoMensual","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_CreditsPerMonthlyActiveUser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_CreditsPerMonthlyActiveUser_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsTotal":{"post":{"operationId":"Analytics-TotalWallets","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTotal_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTotal_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsDaily":{"post":{"operationId":"Analytics-WalletsDiarias","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsDaily_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsDaily_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsMonthly":{"post":{"operationId":"Analytics-WalletsMensuales","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsMonthly_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsMonthly_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByCountry":{"post":{"operationId":"Analytics-WalletsPorPaís","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByCountry_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByCountry_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByDevice":{"post":{"operationId":"Analytics-WalletsPorDispositivo","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByDevice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByDevice_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByBrowser":{"post":{"operationId":"Analytics-WalletsPorNavegador","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByBrowser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByBrowser_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByOS":{"post":{"operationId":"Analytics-WalletsPorSO","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByOS_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByOS_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByType":{"post":{"operationId":"Analytics-WalletsPorTipo","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByType_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByType_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsTxnSentTotal":{"post":{"operationId":"Analytics-TotalTransaccionesEnviadasWallets","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentTotal_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentTotal_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsTxnSentDaily":{"post":{"operationId":"Analytics-TransaccionesEnviadasWalletsDiarias","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentDaily_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentDaily_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsTxnSentMonthly":{"post":{"operationId":"Analytics-TransaccionesEnviadasWalletsMensuales","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentMonthly_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentMonthly_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByOrigin":{"post":{"operationId":"Analytics-WalletsPorOrigen","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByOrigin_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByOrigin_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ConnectionsByOrigin":{"post":{"operationId":"Analytics-ConexionesPorOrigen","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ConnectionsByOrigin_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ConnectionsByOrigin_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketTxnEventTotal":{"post":{"operationId":"Analytics-TotalEventosTransacciónMercado","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventTotal_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventTotal_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketTxnEventDaily":{"post":{"operationId":"Analytics-EventosTransacciónMercadoDiarios","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventDaily_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventDaily_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketTxnEventMonthly":{"post":{"operationId":"Analytics-EventosTransacciónMercadoMensuales","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventMonthly_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventMonthly_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketWalletsTotal":{"post":{"operationId":"Analytics-TotalWalletsMercado","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsTotal_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsTotal_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketWalletsDaily":{"post":{"operationId":"Analytics-WalletsDeMercadoDiarias","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsDaily_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsDaily_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketWalletsMonthly":{"post":{"operationId":"Analytics-WalletsDeMercadoMensuales","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsMonthly_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsMonthly_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalWalletTxnConversionRate":{"post":{"operationId":"Analytics-TasaConversiónTotalTransaccionesWallet","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalWalletTxnConversionRate_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalWalletTxnConversionRate_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyWalletTxnConversionRate":{"post":{"operationId":"Analytics-TasaConversiónDiariaTransaccionesWallet","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyWalletTxnConversionRate_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyWalletTxnConversionRate_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyWalletTxnConversionRate":{"post":{"operationId":"Analytics-TasaConversiónMensualTransaccionesWallet","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyWalletTxnConversionRate_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyWalletTxnConversionRate_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyNewWallets":{"post":{"operationId":"Analytics-NuevasWalletsDiarias","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyNewWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyNewWallets":{"post":{"operationId":"Analytics-NuevasWalletsMensuales","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyNewWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalNewWallets":{"post":{"operationId":"Analytics-TotalNuevasWallets","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalNewWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageDAU":{"post":{"operationId":"Analytics-PromedioDAU","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageDAU_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageDAU_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/RollingStickiness":{"post":{"operationId":"Analytics-RetenciónRodante","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_RollingStickiness_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_RollingStickiness_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageStickiness":{"post":{"operationId":"Analytics-PromedioRetención","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageStickiness_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageStickiness_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D1RetentionByCohort":{"post":{"operationId":"Analytics-RetenciónD1PorCohorte","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D1RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D1RetentionByCohort_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D3RetentionByCohort":{"post":{"operationId":"Analytics-RetenciónD3PorCohorte","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D3RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D3RetentionByCohort_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D7RetentionByCohort":{"post":{"operationId":"Analytics-RetenciónD7PorCohorte","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D7RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D7RetentionByCohort_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D14RetentionByCohort":{"post":{"operationId":"Analytics-RetenciónD14PorCohorte","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D14RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D14RetentionByCohort_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D28RetentionByCohort":{"post":{"operationId":"Analytics-RetenciónD28PorCohorte","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D28RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D28RetentionByCohort_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD1Retention":{"post":{"operationId":"Analytics-PromedioRetenciónD1","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD1Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD1Retention_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD3Retention":{"post":{"operationId":"Analytics-PromedioRetenciónD3","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD3Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD3Retention_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD7Retention":{"post":{"operationId":"Analytics-PromedioRetenciónD7","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD7Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD7Retention_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD14Retention":{"post":{"operationId":"Analytics-PromedioRetenciónD14","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD14Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD14Retention_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD28Retention":{"post":{"operationId":"Analytics-PromedioRetenciónD28","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD28Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD28Retention_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyActiveWalletsBySegment":{"post":{"operationId":"Analytics-WalletsActivasMensualesPorSegmento","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyActiveWalletsBySegment_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyActiveWalletsBySegment_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyTransactingWalletsBySegment":{"post":{"operationId":"Analytics-WalletsTransactorasMensualesPorSegmento","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyTransactingWalletsBySegment_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyTransactingWalletsBySegment_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WeeklyActiveWallets":{"post":{"operationId":"Analytics-WalletsActivasSemanales","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WeeklyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WeeklyActiveWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalViews":{"post":{"operationId":"Analytics-TotalVistas","tags":["Analytics"],"summary":"Analítica de vistas","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalViews_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalViews_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyViews":{"post":{"operationId":"Analytics-VistasDiarias","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyViews_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyViews_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ViewsByCountry":{"post":{"operationId":"Analytics-VistasPorPaís","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByCountry_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByCountry_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ViewsByDevice":{"post":{"operationId":"Analytics-VistasPorDispositivo","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByDevice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByDevice_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ViewsByOS":{"post":{"operationId":"Analytics-VistasPorSO","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByOS_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByOS_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyUniqueVisitors":{"post":{"operationId":"Analytics-VisitantesÚnicosDiarios","tags":["Analytics"],"summary":"Analítica de visitantes","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyUniqueVisitors_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyUniqueVisitors_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyUniqueVisitors":{"post":{"operationId":"Analytics-VisitantesÚnicosMensuales","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyUniqueVisitors_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyUniqueVisitors_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ActiveSessions":{"post":{"operationId":"Analytics-SesionesActivas","tags":["Analytics"],"summary":"Analítica en tiempo real","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ActiveSessions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ActiveSessions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/UserEvents":{"post":{"operationId":"Analytics-EventosUsuario","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_UserEvents_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_UserEvents_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalWallets":{"post":{"operationId":"Analytics-TotalWalletsEcosistema","tags":["Analytics"],"summary":"Analítica del ecosistema","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalProjects":{"post":{"operationId":"Analytics-TotalProyectosEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalProjects_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalProjects_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalProjectsCreated":{"post":{"operationId":"Analytics-TotalProyectosCreadosEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalProjectsCreated_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalProjectsCreated_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalActiveProjects":{"post":{"operationId":"Analytics-TotalProyectosActivosEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalActiveProjects_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalActiveProjects_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalDevelopers":{"post":{"operationId":"Analytics-DesarrolladoresTotalesEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalDevelopers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalDevelopers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemActiveDevelopers":{"post":{"operationId":"Analytics-DesarrolladoresActivosEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemActiveDevelopers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemActiveDevelopers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemDailyActiveWallets":{"post":{"operationId":"Analytics-WalletsActivasDiariasDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyActiveWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyActiveWallets":{"post":{"operationId":"Analytics-WalletsActivasMensualesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyActiveWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemDailyNewProjects":{"post":{"operationId":"Analytics-NuevosProyectosDiariosDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyNewProjects_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyNewProjects_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyNewProjects":{"post":{"operationId":"Analytics-NuevosProyectosMensualesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyNewProjects_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyNewProjects_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalContracts":{"post":{"operationId":"Analytics-TotalDeContratosDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalContracts_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalContracts_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyContracts":{"post":{"operationId":"Analytics-ContratosMensualesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyContracts_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyContracts_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByActiveWallets":{"post":{"operationId":"Analytics-ProyectosDestacadosPorWalletsActivasDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByActiveWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByNewWallets":{"post":{"operationId":"Analytics-ProyectosDestacadosPorNuevasWalletsDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByNewWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsCreated":{"post":{"operationId":"Analytics-WalletsCreadasDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsCreated_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsCreated_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyActiveEcoWallets":{"post":{"operationId":"Analytics-WalletsEcoActivasMensualesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyActiveEcoWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyActiveEcoWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemDailyNewWallets":{"post":{"operationId":"Analytics-NuevasWalletsDiariasDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyNewWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyNewWallets":{"post":{"operationId":"Analytics-NuevasWalletsMensualesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyNewWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByDeveloperActivity":{"post":{"operationId":"Analytics-ProyectosDestacadosPorActividadDeDesarrolladoresDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByDeveloperActivity_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByDeveloperActivity_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByNewDevelopers":{"post":{"operationId":"Analytics-ProyectosDestacadosPorNuevosDesarrolladoresDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByNewDevelopers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByNewDevelopers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalMarketplaces":{"post":{"operationId":"Analytics-TotalDeMarketplacesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalMarketplaces_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalMarketplaces_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyMarketplaces":{"post":{"operationId":"Analytics-MarketplacesMensualesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyMarketplaces_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyMarketplaces_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemActiveMarketplaces":{"post":{"operationId":"Analytics-MarketplacesActivosDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemActiveMarketplaces_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemActiveMarketplaces_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByCountry":{"post":{"operationId":"Analytics-WalletsPorPaísDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByCountry_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByCountry_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByDevice":{"post":{"operationId":"Analytics-WalletsPorDispositivoDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByDevice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByDevice_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByOS":{"post":{"operationId":"Analytics-WalletsPorSOdelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByOS_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByOS_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByBrowser":{"post":{"operationId":"Analytics-WalletsPorNavegadorDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByBrowser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByBrowser_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByType":{"post":{"operationId":"Analytics-WalletsPorTipoDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByType_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByType_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByLoginMethod":{"post":{"operationId":"Analytics-WalletsPorMétodoDeInicioDeSesiónDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByLoginMethod_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByLoginMethod_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalTransactions":{"post":{"operationId":"Analytics-TotalDeTransaccionesDelEcosistema","tags":["Analytics"],"summary":"Analítica de transacciones del ecosistema","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyTransactions":{"post":{"operationId":"Analytics-TransaccionesMensualesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalTransactingUsers":{"post":{"operationId":"Analytics-TotalDeUsuariosQueTransaccionanEnElEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactingUsers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyTransactingUsers":{"post":{"operationId":"Analytics-UsuariosQueTransaccionanMensualmenteEnElEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactingUsers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalTransactionVolume":{"post":{"operationId":"Analytics-VolumenTotalDeTransaccionesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactionVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyTransactionVolume":{"post":{"operationId":"Analytics-VolumenMensualDeTransaccionesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactionVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByTransactions":{"post":{"operationId":"Analytics-ProyectosDestacadosPorTransaccionesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByTransactingUsers":{"post":{"operationId":"Analytics-ProyectosDestacadosPorUsuariosQueTransaccionanDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactingUsers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByTransactionVolume":{"post":{"operationId":"Analytics-ProyectosDestacadosPorVolumenDeTransaccionesDelEcosistema","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactionVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactions":{"post":{"operationId":"Analytics-TotalDeTransaccionesDelProyecto","tags":["Analytics"],"summary":"Analítica de transacciones","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyProjectTransactions":{"post":{"operationId":"Analytics-TransaccionesDiariasDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyProjectTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyProjectTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyProjectTransactions":{"post":{"operationId":"Analytics-TransaccionesMensualesDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactionsByChain":{"post":{"operationId":"Analytics-TotalDeTransaccionesPorRedDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByChain_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByChain_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactionsByCollection":{"post":{"operationId":"Analytics-TotalDeTransaccionesPorColecciónDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByCollection_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByCollection_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactionsByToken":{"post":{"operationId":"Analytics-TotalDeTransaccionesPorTokenDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByToken_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByToken_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyProjectTransactionsByCollection":{"post":{"operationId":"Analytics-TransaccionesMensualesPorColecciónDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectTransactionsByCollection_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectTransactionsByCollection_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactionVolume":{"post":{"operationId":"Analytics-VolumenTotalDeTransaccionesDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyProjectVolume":{"post":{"operationId":"Analytics-VolumenDiarioDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyProjectVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyProjectVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyProjectVolume":{"post":{"operationId":"Analytics-VolumenMensualDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectVolumeByChain":{"post":{"operationId":"Analytics-VolumenTotalPorRedDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByChain_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByChain_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectVolumeByCollection":{"post":{"operationId":"Analytics-VolumenTotalPorColecciónDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByCollection_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByCollection_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectVolumeByToken":{"post":{"operationId":"Analytics-VolumenTotalPorTokenDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByToken_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByToken_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyProjectVolumeByCollection":{"post":{"operationId":"Analytics-VolumenMensualPorColecciónDelProyecto","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectVolumeByCollection_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectVolumeByCollection_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TransactionVolumePerUser":{"post":{"operationId":"Analytics-VolumenDeTransaccionesPorUsuario","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactionVolumePerUser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactionVolumePerUser_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TransactionVolumePerTransactingUser":{"post":{"operationId":"Analytics-VolumenDeTransaccionesPorUsuarioQueTransacciona","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactionVolumePerTransactingUser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactionVolumePerTransactingUser_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalTransactingUsers":{"post":{"operationId":"Analytics-TotalDeUsuariosQueTransaccionan","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalTransactingUsers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyUniqueTransactingUsers":{"post":{"operationId":"Analytics-UsuariosÚnicosQueTransaccionanDiariamente","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyUniqueTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyUniqueTransactingUsers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyUniqueTransactingUsers":{"post":{"operationId":"Analytics-UsuariosÚnicosQueTransaccionanMensualmente","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyUniqueTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyUniqueTransactingUsers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TransactingUserConversion":{"post":{"operationId":"Analytics-ConversiónDeUsuariosQueTransaccionan","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactingUserConversion_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactingUserConversion_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyTransactingUserConversion":{"post":{"operationId":"Analytics-ConversiónDiariaDeUsuariosQueTransaccionan","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyTransactingUserConversion_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyTransactingUserConversion_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyTransactingUserConversion":{"post":{"operationId":"Analytics-ConversiónMensualDeUsuariosQueTransaccionan","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyTransactingUserConversion_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyTransactingUserConversion_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/RepeatingTransactingUserPercentage":{"post":{"operationId":"Analytics-PorcentajeDeUsuariosRecurrentesQueTransaccionan","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_RepeatingTransactingUserPercentage_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_RepeatingTransactingUserPercentage_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WeekOnWeekTransactingUserRetention":{"post":{"operationId":"Analytics-RetenciónSemanalDeUsuariosTransaccionando","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WeekOnWeekTransactingUserRetention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WeekOnWeekTransactingUserRetention_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthOnMonthTransactingUserRetention":{"post":{"operationId":"Analytics-RetenciónMensualDeUsuariosTransaccionando","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthOnMonthTransactingUserRetention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthOnMonthTransactingUserRetention_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AvgBalanceOfSequenceWallets":{"post":{"operationId":"Analytics-PromedioDeSaldoDeSequenceWallets","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AvgBalanceOfSequenceWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AvgBalanceOfSequenceWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AvgBalanceOfTransactingSequenceWallets":{"post":{"operationId":"Analytics-PromedioDeSaldoDeSequenceWalletsTransaccionando","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AvgBalanceOfTransactingSequenceWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AvgBalanceOfTransactingSequenceWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceTransactions":{"post":{"operationId":"Analytics-TotalDeTransaccionesEnMarketplace","tags":["Analytics"],"summary":"Analítica de Marketplace","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyMarketplaceTransactions":{"post":{"operationId":"Analytics-TransaccionesDiariasEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyMarketplaceTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyMarketplaceTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyMarketplaceTransactions":{"post":{"operationId":"Analytics-TransaccionesMensualesEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyMarketplaceTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyMarketplaceTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsTransacted":{"post":{"operationId":"Analytics-TotalDeArtículosTransaccionadosEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsTransacted_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsTransacted_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsPurchased":{"post":{"operationId":"Analytics-TotalDeArtículosCompradosEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsPurchased_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsPurchased_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsSold":{"post":{"operationId":"Analytics-TotalDeArtículosVendidosEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsSold_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsSold_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsListed":{"post":{"operationId":"Analytics-TotalDeArtículosListadosEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsListed_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsListed_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsOffered":{"post":{"operationId":"Analytics-TotalDeArtículosOfertadosEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsOffered_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsOffered_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceTransactingUsers":{"post":{"operationId":"Analytics-TotalDeUsuariosTransaccionandoEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTransactingUsers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceVolume":{"post":{"operationId":"Analytics-VolumenTotalEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyMarketplaceVolume":{"post":{"operationId":"Analytics-VolumenDiarioEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyMarketplaceVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyMarketplaceVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyMarketplaceVolume":{"post":{"operationId":"Analytics-VolumenMensualEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyMarketplaceVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyMarketplaceVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageMarketplaceTransactionPrice":{"post":{"operationId":"Analytics-PrecioPromedioPorTransacciónEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageMarketplaceTransactionPrice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageMarketplaceTransactionPrice_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceTradedCollections":{"post":{"operationId":"Analytics-TotalDeColeccionesIntercambiadasEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTradedCollections_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTradedCollections_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TopMarketplaceBuyers":{"post":{"operationId":"Analytics-PrincipalesCompradoresEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopMarketplaceBuyers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopMarketplaceBuyers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TopMarketplaceSellers":{"post":{"operationId":"Analytics-PrincipalesVendedoresEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopMarketplaceSellers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopMarketplaceSellers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketplaceCollectionTransactions":{"post":{"operationId":"Analytics-TransaccionesPorColecciónEnMarketplace","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketplaceCollectionTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketplaceCollectionTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopTransactions":{"post":{"operationId":"Analytics-TotalDeTransaccionesEnTienda","tags":["Analytics"],"summary":"Analítica de Tienda","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyShopTransactions":{"post":{"operationId":"Analytics-TransaccionesDiariasEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyShopTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyShopTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyShopTransactions":{"post":{"operationId":"Analytics-TransaccionesMensualesEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyShopTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyShopTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopItemsPurchased":{"post":{"operationId":"Analytics-TotalDeArtículosCompradosEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopItemsPurchased_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopItemsPurchased_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopPurchasers":{"post":{"operationId":"Analytics-TotalDeCompradoresEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopPurchasers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopPurchasers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopVolume":{"post":{"operationId":"Analytics-VolumenTotalEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyShopVolume":{"post":{"operationId":"Analytics-VolumenDiarioEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyShopVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyShopVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyShopVolume":{"post":{"operationId":"Analytics-VolumenMensualEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyShopVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyShopVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageShopPurchasePrice":{"post":{"operationId":"Analytics-PrecioPromedioDeCompraEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageShopPurchasePrice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageShopPurchasePrice_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TopShopBuyers":{"post":{"operationId":"Analytics-PrincipalesCompradoresEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopShopBuyers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopShopBuyers_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ShopCollectionTransactions":{"post":{"operationId":"Analytics-TransaccionesPorColecciónEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ShopCollectionTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ShopCollectionTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsSoldByToken":{"post":{"operationId":"Analytics-TotalDeArtículosVendidosPorTokenEnMarketplace","tags":["Analytics"],"summary":"Analítica de Marketplace por Token","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsSoldByToken_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsSoldByToken_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopItemsSoldByToken":{"post":{"operationId":"Analytics-TotalDeArtículosVendidosPorTokenEnTienda","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopItemsSoldByToken_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopItemsSoldByToken_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTotalTransactionVolume":{"post":{"operationId":"Analytics-VolumenTotalDeTransaccionesEnTrails","tags":["Analytics"],"summary":"Analítica de Trails - Grandes Números","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalTransactionVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTotalTransactions":{"post":{"operationId":"Analytics-TotalDeTransaccionesEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTotalUniqueTransactingWallets":{"post":{"operationId":"Analytics-TotalDeWalletsÚnicosTransaccionandoEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalUniqueTransactingWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalUniqueTransactingWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsAverageTransactionDuration":{"post":{"operationId":"Analytics-DuraciónPromedioDeTransacciónEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsAverageTransactionDuration_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsAverageTransactionDuration_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsPaymentCompletionPercentage":{"post":{"operationId":"Analytics-PorcentajeDePagosCompletadosEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsPaymentCompletionPercentage_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsPaymentCompletionPercentage_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByDomain":{"post":{"operationId":"Analytics-TransaccionesPorDominioEnTrails","tags":["Analytics"],"summary":"Analítica de Trails - Gráficas por Categoría","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByDomain_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByDomain_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByAmount":{"post":{"operationId":"Analytics-TransaccionesPorMontoEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByAmount_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByAmount_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyTransactionVolume":{"post":{"operationId":"Analytics-VolumenDiarioDeTransaccionesEnTrails","tags":["Analytics"],"summary":"Analítica de Trails - Series Temporales Diarias","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactionVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyTransactions":{"post":{"operationId":"Analytics-TransaccionesDiariasEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyTransactingWallets":{"post":{"operationId":"Analytics-WalletsTransaccionandoDiariamenteEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactingWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactingWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyActiveWallets":{"post":{"operationId":"Analytics-WalletsActivosDiariosEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyActiveWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyAverageTransactionDuration":{"post":{"operationId":"Analytics-DuraciónPromedioDiariaDeTransacciónEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyAverageTransactionDuration_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyAverageTransactionDuration_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyPaymentCompletionPercentage":{"post":{"operationId":"Analytics-PorcentajeDiarioDePagosCompletadosEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyPaymentCompletionPercentage_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyPaymentCompletionPercentage_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyTransactionVolume":{"post":{"operationId":"Analytics-VolumenMensualDeTransaccionesEnTrails","tags":["Analytics"],"summary":"Analítica de Trails - Series Temporales Mensuales","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactionVolume_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyTransactions":{"post":{"operationId":"Analytics-TransaccionesMensualesEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyTransactingWallets":{"post":{"operationId":"Analytics-WalletsTransaccionandoMensualmenteEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactingWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactingWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyActiveWallets":{"post":{"operationId":"Analytics-WalletsActivosMensualesEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyActiveWallets_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyAverageTransactionDuration":{"post":{"operationId":"Analytics-DuraciónPromedioMensualDeTransacciónEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyAverageTransactionDuration_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyAverageTransactionDuration_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyPaymentCompletionPercentage":{"post":{"operationId":"Analytics-PorcentajeMensualDePagosCompletadosEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyPaymentCompletionPercentage_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyPaymentCompletionPercentage_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByMode":{"post":{"operationId":"Analytics-TransaccionesPorModoEnTrails","tags":["Analytics"],"summary":"Analítica de Trails - Tablas","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByMode_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByMode_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByRoute":{"post":{"operationId":"Analytics-TransaccionesPorRutaEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByRoute_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByRoute_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByProvider":{"post":{"operationId":"Analytics-TransaccionesPorProveedorEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByProvider_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByProvider_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByCountry":{"post":{"operationId":"Analytics-TransaccionesPorPaísEnTrails","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByCountry_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByCountry_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTopTransactions":{"post":{"operationId":"Analytics-TrailsTopTransactions","tags":["Analytics"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTopTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTopTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ExportTrailsTransactions":{"post":{"operationId":"Analytics-ExportTrailsTransactions","tags":["Analytics"],"summary":"Trails Analytics - Exportar (devuelve todos los datos sin límite para exportación CSV)","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ExportTrailsTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ExportTrailsTransactions_Response"}}}},"4XX":{"description":"Error del cliente","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"Error del servidor","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}}},"security":[{"ApiKeyAuth":[]}]} \ No newline at end of file diff --git a/ja/api-references/analytics/endpoints/analytics-api.json b/ja/api-references/analytics/endpoints/analytics-api.json index 74891246..d4ffbd90 100644 --- a/ja/api-references/analytics/endpoints/analytics-api.json +++ b/ja/api-references/analytics/endpoints/analytics-api.json @@ -1,11906 +1 @@ -{ - "components": { - "schemas": { - "ErrorWebrpcEndpoint": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcEndpoint" - }, - "code": { - "type": "number", - "example": 0 - }, - "msg": { - "type": "string", - "example": "endpoint error" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorWebrpcRequestFailed": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcRequestFailed" - }, - "code": { - "type": "number", - "example": -1 - }, - "msg": { - "type": "string", - "example": "request failed" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorWebrpcBadRoute": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcBadRoute" - }, - "code": { - "type": "number", - "example": -2 - }, - "msg": { - "type": "string", - "example": "bad route" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 404 - } - } - }, - "ErrorWebrpcBadMethod": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcBadMethod" - }, - "code": { - "type": "number", - "example": -3 - }, - "msg": { - "type": "string", - "example": "bad method" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 405 - } - } - }, - "ErrorWebrpcBadRequest": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcBadRequest" - }, - "code": { - "type": "number", - "example": -4 - }, - "msg": { - "type": "string", - "example": "bad request" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorWebrpcBadResponse": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcBadResponse" - }, - "code": { - "type": "number", - "example": -5 - }, - "msg": { - "type": "string", - "example": "bad response" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 500 - } - } - }, - "ErrorWebrpcServerPanic": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcServerPanic" - }, - "code": { - "type": "number", - "example": -6 - }, - "msg": { - "type": "string", - "example": "server panic" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 500 - } - } - }, - "ErrorWebrpcInternalError": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcInternalError" - }, - "code": { - "type": "number", - "example": -7 - }, - "msg": { - "type": "string", - "example": "internal error" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 500 - } - } - }, - "ErrorWebrpcClientDisconnected": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcClientDisconnected" - }, - "code": { - "type": "number", - "example": -8 - }, - "msg": { - "type": "string", - "example": "client disconnected" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorWebrpcStreamLost": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcStreamLost" - }, - "code": { - "type": "number", - "example": -9 - }, - "msg": { - "type": "string", - "example": "stream lost" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorWebrpcStreamFinished": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "WebrpcStreamFinished" - }, - "code": { - "type": "number", - "example": -10 - }, - "msg": { - "type": "string", - "example": "stream finished" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 200 - } - } - }, - "ErrorUnauthorized": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "Unauthorized" - }, - "code": { - "type": "number", - "example": 1000 - }, - "msg": { - "type": "string", - "example": "Unauthorized access" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 401 - } - } - }, - "ErrorPermissionDenied": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "PermissionDenied" - }, - "code": { - "type": "number", - "example": 1001 - }, - "msg": { - "type": "string", - "example": "Permission denied" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 403 - } - } - }, - "ErrorSessionExpired": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "SessionExpired" - }, - "code": { - "type": "number", - "example": 1002 - }, - "msg": { - "type": "string", - "example": "Session expired" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 403 - } - } - }, - "ErrorMethodNotFound": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "MethodNotFound" - }, - "code": { - "type": "number", - "example": 1003 - }, - "msg": { - "type": "string", - "example": "Method not found" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 404 - } - } - }, - "ErrorRequestConflict": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "RequestConflict" - }, - "code": { - "type": "number", - "example": 1004 - }, - "msg": { - "type": "string", - "example": "Conflict with target resource" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 409 - } - } - }, - "ErrorServiceDisabled": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "ServiceDisabled" - }, - "code": { - "type": "number", - "example": 1005 - }, - "msg": { - "type": "string", - "example": "Service disabled" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 404 - } - } - }, - "ErrorTimeout": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "Timeout" - }, - "code": { - "type": "number", - "example": 2000 - }, - "msg": { - "type": "string", - "example": "Request timed out" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 408 - } - } - }, - "ErrorInvalidArgument": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "InvalidArgument" - }, - "code": { - "type": "number", - "example": 2001 - }, - "msg": { - "type": "string", - "example": "Invalid argument" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorNotFound": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "NotFound" - }, - "code": { - "type": "number", - "example": 3000 - }, - "msg": { - "type": "string", - "example": "Resource not found" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorUserNotFound": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "UserNotFound" - }, - "code": { - "type": "number", - "example": 3001 - }, - "msg": { - "type": "string", - "example": "User not found" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorProjectNotFound": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "ProjectNotFound" - }, - "code": { - "type": "number", - "example": 3002 - }, - "msg": { - "type": "string", - "example": "Project not found" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorInvalidTier": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "InvalidTier" - }, - "code": { - "type": "number", - "example": 3003 - }, - "msg": { - "type": "string", - "example": "Invalid subscription tier" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorEmailTemplateExists": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "EmailTemplateExists" - }, - "code": { - "type": "number", - "example": 3004 - }, - "msg": { - "type": "string", - "example": "Email Template exists" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 409 - } - } - }, - "ErrorSubscriptionLimit": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "SubscriptionLimit" - }, - "code": { - "type": "number", - "example": 3005 - }, - "msg": { - "type": "string", - "example": "Subscription limit reached" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 402 - } - } - }, - "ErrorFeatureNotIncluded": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "FeatureNotIncluded" - }, - "code": { - "type": "number", - "example": 3006 - }, - "msg": { - "type": "string", - "example": "Feature not included" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 402 - } - } - }, - "ErrorInvalidNetwork": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "InvalidNetwork" - }, - "code": { - "type": "number", - "example": 3007 - }, - "msg": { - "type": "string", - "example": "Invalid network" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorInvitationExpired": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "InvitationExpired" - }, - "code": { - "type": "number", - "example": 4000 - }, - "msg": { - "type": "string", - "example": "Invitation code is expired" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 400 - } - } - }, - "ErrorAlreadyCollaborator": { - "type": "object", - "required": [ - "エラー", - "code", - "msg", - "status" - ], - "properties": { - "error": { - "type": "string", - "example": "AlreadyCollaborator" - }, - "code": { - "type": "number", - "example": 4001 - }, - "msg": { - "type": "string", - "example": "Already a collaborator" - }, - "cause": { - "type": "string" - }, - "status": { - "type": "number", - "example": 409 - } - } - }, - "AuthSessionType": { - "type": "string", - "description": "Represented as uint16 on the server side", - "enum": [ - "PUBLIC", - "WALLET", - "USER", - "ADMIN", - "SERVICE" - ] - }, - "SubscriptionTier": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "COMMUNITY", - "DEVELOPER", - "GROWTH", - "PRO", - "ENTERPRISE" - ] - }, - "ProjectType": { - "type": "string", - "description": "Represented as string on the server side", - "enum": [ - "EMBEDDED_WALLET_REACT", - "EMBEDDED_WALLET_NEXTJS", - "EMBEDDED_WALLET_UNITY", - "EMBEDDED_WALLET_UNREAL", - "MARKETPLACE_STANDALONE", - "MARKETPLACE_REACT", - "MARKETPLACE_UNITY", - "MARKETPLACE_UNREAL", - "SALE_CONTRACT_ERC1155", - "SALE_CONTRACT_ERC721" - ] - }, - "ResourceType": { - "type": "string", - "description": "Represented as int8 on the server side", - "enum": [ - "CONTRACTS" - ] - }, - "SubscriptionProvider": { - "type": "string", - "description": "Represented as string on the server side", - "enum": [ - "ADMIN", - "STRIPE", - "GOOGLE" - ] - }, - "CollaboratorAccess": { - "type": "string", - "description": "Represented as uint32 on the server side", - "enum": [ - "NONE", - "READ", - "WRITE", - "ADMIN" - ] - }, - "CollaboratorType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "USER", - "SERVICE_ACCOUNT" - ] - }, - "ContractSourceType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "LINKED", - "DEPLOYED", - "SALE" - ] - }, - "SortOrder": { - "type": "string", - "description": "Represented as uint32 on the server side", - "enum": [ - "DESC", - "ASC" - ] - }, - "PaymentProvider": { - "type": "string", - "description": "Represented as uint16 on the server side", - "enum": [ - "UNKNOWN", - "STRIPE", - "MANUAL" - ] - }, - "PaymentStatus": { - "type": "string", - "description": "Represented as uint16 on the server side", - "enum": [ - "INITIATED", - "PENDING", - "SUCCEEDED", - "FAILED", - "PROCESSED" - ] - }, - "MarketplaceWallet": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "UNIVERSAL", - "EMBEDDED" - ] - }, - "MarketplaceType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "AMM", - "P2P", - "SEQUENCE", - "ORDERBOOK" - ] - }, - "TokenType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "ERC20", - "ERC721", - "ERC1155" - ] - }, - "FileScope": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "LOGO", - "MARKETPLACE", - "AVATAR", - "EMAIL", - "WALLET", - "TOKEN_DIRECTORY" - ] - }, - "EmailTemplateType": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "UNKNOWN", - "LOGIN", - "GUARD" - ] - }, - "TaskStatus": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "PENDING", - "PAUSED", - "FAILED", - "COMPLETED", - "DISABLED" - ] - }, - "DateInterval": { - "type": "string", - "description": "Represented as uint16 on the server side", - "enum": [ - "DAY", - "WEEK", - "MONTH" - ] - }, - "OnboardingStep": { - "type": "string", - "description": "Represented as string on the server side", - "enum": [ - "linkOrDeployContract", - "createMarketplace", - "setUpGasTank", - "configureWaas", - "customizeWallet", - "inviteCollaborator", - "cloneGithub", - "copyCredentials", - "customizeMarketplace", - "deployERC721Contract", - "deployERC1155Contract", - "addMarketplaceCollection", - "createCollection", - "customizeCollectible", - "deploySaleContract", - "setSaleSettings", - "addMinterRoleToItems", - "setUpAudienceList" - ] - }, - "WaasTenantState": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "PENDING", - "DEPLOYING", - "READY", - "FAILED" - ] - }, - "TrialType": { - "type": "string", - "description": "Represented as string on the server side", - "enum": [ - "ANALYTICS" - ] - }, - "CustomerTier": { - "type": "string", - "description": "Represented as uint8 on the server side", - "enum": [ - "TIER_1", - "TIER_2", - "TIER_3", - "TIER_4", - "TIER_5" - ] - }, - "Version": { - "type": "object", - "required": [ - "webrpcVersion", - "schemaVersion", - "schemaHash", - "appVersion" - ], - "properties": { - "webrpcVersion": { - "type": "string" - }, - "schemaVersion": { - "type": "string" - }, - "schemaHash": { - "type": "string" - }, - "appVersion": { - "type": "string" - } - } - }, - "RuntimeStatus": { - "type": "object", - "required": [ - "healthOK", - "startTime", - "uptime", - "ver", - "env", - "branch", - "commitHash", - "networks", - "checks" - ], - "properties": { - "healthOK": { - "type": "boolean" - }, - "startTime": { - "type": "string" - }, - "uptime": { - "type": "number" - }, - "ver": { - "type": "string" - }, - "env": { - "type": "string" - }, - "branch": { - "type": "string" - }, - "commitHash": { - "type": "string" - }, - "networks": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "boolean" - } - }, - "checks": { - "$ref": "#/components/schemas/RuntimeChecks" - } - } - }, - "RuntimeChecks": { - "type": "object", - "required": [ - "quotaControl", - "joqueue", - "stripe", - "cloudCommerce" - ], - "properties": { - "quotaControl": { - "type": "boolean" - }, - "joqueue": { - "type": "boolean" - }, - "stripe": { - "type": "boolean" - }, - "cloudCommerce": { - "type": "boolean" - } - } - }, - "Configuration": { - "type": "object", - "required": [ - "name", - "title", - "chainIds", - "domains" - ], - "properties": { - "name": { - "type": "string" - }, - "title": { - "type": "string" - }, - "chainIds": { - "type": "array", - "description": "[]uint64", - "items": { - "type": "number" - } - }, - "domains": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "logoUrl": { - "type": "string" - }, - "logoLightUrl": { - "type": "string" - }, - "titleUrl": { - "type": "string" - }, - "backgroundUrl": { - "type": "string" - }, - "mobileBackgroundUrl": { - "type": "string" - }, - "customCss": { - "type": "string" - }, - "animationUrl": { - "type": "string" - }, - "crispWebsiteId": { - "type": "string" - }, - "learnMoreButton": { - "type": "string" - }, - "learnMoreUrl": { - "type": "string" - } - } - }, - "AuthState": { - "type": "object", - "required": [ - "jwtToken", - "expiresAt", - "address", - "sessionType" - ], - "properties": { - "jwtToken": { - "type": "string" - }, - "expiresAt": { - "type": "string" - }, - "address": { - "type": "string" - }, - "sessionType": { - "$ref": "#/components/schemas/AuthSessionType" - }, - "user": { - "$ref": "#/components/schemas/User" - } - } - }, - "User": { - "type": "object", - "required": [ - "address", - "createdAt", - "updatedAt", - "sysAdmin", - "avatarKey", - "avatarUrl" - ], - "properties": { - "address": { - "type": "string" - }, - "email": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "sysAdmin": { - "type": "boolean" - }, - "avatarKey": { - "type": "string" - }, - "avatarUrl": { - "type": "string" - } - } - }, - "UserSettings": { - "type": "object", - "required": [ - "freeProjectsLeft", - "totalFreeProjectLimit", - "totalPaidProjects" - ], - "properties": { - "freeProjectsLeft": { - "type": "number" - }, - "totalFreeProjectLimit": { - "type": "number" - }, - "totalPaidProjects": { - "type": "number" - } - } - }, - "UserOverride": { - "type": "object", - "required": [ - "id", - "address", - "extraProjects", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "address": { - "type": "string" - }, - "extraProjects": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "Project": { - "type": "object", - "required": [ - "id", - "name", - "ownerAddress", - "ownerAvatarUrl", - "draft", - "logoImageKey", - "logoImageUrl", - "websiteUrl", - "chainIds", - "whitelabel", - "subscriptionTier", - "collaboratorCount", - "onboardingSteps", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "name": { - "type": "string" - }, - "type": { - "$ref": "#/components/schemas/ProjectType" - }, - "ownerAddress": { - "type": "string" - }, - "ownerEmail": { - "type": "string" - }, - "ownerAvatarUrl": { - "type": "string" - }, - "draft": { - "type": "boolean" - }, - "logoImageKey": { - "type": "string" - }, - "logoImageUrl": { - "type": "string" - }, - "websiteUrl": { - "type": "string" - }, - "chainIds": { - "type": "array", - "description": "[]uint64", - "items": { - "type": "number" - } - }, - "whitelabel": { - "type": "string" - }, - "subscriptionTier": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "collaboratorCount": { - "type": "number" - }, - "onboardingSteps": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "boolean" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" - } - } - }, - "ResourceFilter": { - "type": "object", - "properties": { - "contracts": { - "$ref": "#/components/schemas/ContractFilter" - } - } - }, - "Resource": { - "type": "object", - "required": [ - "type", - "total", - "detail" - ], - "properties": { - "type": { - "$ref": "#/components/schemas/ResourceType" - }, - "total": { - "type": "number" - }, - "detail": { - "type": "array", - "description": "[]ResourceDetail", - "items": { - "$ref": "#/components/schemas/ResourceDetail" - } - } - } - }, - "ResourceDetail": { - "type": "object", - "required": [ - "key", - "count" - ], - "properties": { - "key": { - "type": "object" - }, - "count": { - "type": "number" - } - } - }, - "ProjectSubscription": { - "type": "object", - "required": [ - "id", - "projectId", - "subscriptionTier", - "provider", - "providerId", - "dateStart" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "subscriptionTier": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "provider": { - "$ref": "#/components/schemas/SubscriptionProvider" - }, - "providerId": { - "type": "string" - }, - "dateStart": { - "type": "string" - }, - "dateEnd": { - "type": "string" - } - } - }, - "Collaborator": { - "type": "object", - "required": [ - "id", - "projectId", - "type", - "userAddress", - "access", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "type": { - "$ref": "#/components/schemas/CollaboratorType" - }, - "userAddress": { - "type": "string" - }, - "userEmail": { - "type": "string" - }, - "userAvatarUrl": { - "type": "string" - }, - "userAvatarKey": { - "type": "string" - }, - "access": { - "$ref": "#/components/schemas/CollaboratorAccess" - }, - "invitationId": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "Contract": { - "type": "object", - "required": [ - "id", - "projectId", - "contractName", - "contractAddress", - "contractType", - "chainId", - "source", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "contractName": { - "type": "string" - }, - "contractAddress": { - "type": "string" - }, - "contractType": { - "type": "string" - }, - "chainId": { - "type": "number" - }, - "source": { - "$ref": "#/components/schemas/ContractSourceType" - }, - "itemsContractAddress": { - "type": "string" - }, - "splitterContractAddresses": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "abi": { - "type": "string" - }, - "bytecode": { - "type": "string" - }, - "bytecodeHash": { - "type": "string" - }, - "audienceId": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "ContractFilter": { - "type": "object", - "properties": { - "chainId": { - "type": "number" - }, - "contractSourceType": { - "$ref": "#/components/schemas/ContractSourceType" - }, - "contractType": { - "type": "string" - } - } - }, - "ContractLink": { - "type": "object", - "required": [ - "project", - "collaborator" - ], - "properties": { - "contract": { - "$ref": "#/components/schemas/Contract" - }, - "project": { - "$ref": "#/components/schemas/Project" - }, - "collaborator": { - "$ref": "#/components/schemas/Collaborator" - } - } - }, - "NodeAccount": { - "type": "object", - "required": [ - "id", - "displayName", - "requestRateLimit", - "requestMonthlyQuota", - "active" - ], - "properties": { - "id": { - "type": "number" - }, - "displayName": { - "type": "string" - }, - "requestRateLimit": { - "type": "number" - }, - "requestMonthlyQuota": { - "type": "number" - }, - "active": { - "type": "boolean" - } - } - }, - "RelayerGasTank": { - "type": "object", - "required": [ - "id", - "projectId", - "relayerIdMap", - "totalPayments", - "totalUsage" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "relayerIdMap": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "number" - } - }, - "totalPayments": { - "type": "number" - }, - "totalUsage": { - "type": "number" - }, - "timestampUsage": { - "type": "string" - }, - "lastPaymentId": { - "type": "number" - } - } - }, - "RelayerGasBalance": { - "type": "object", - "required": [ - "id", - "name", - "chainId", - "currentBalance", - "feeMarkupFactor", - "unlimited" - ], - "properties": { - "id": { - "type": "number" - }, - "name": { - "type": "string" - }, - "chainId": { - "type": "number" - }, - "currentBalance": { - "type": "number" - }, - "feeMarkupFactor": { - "type": "number" - }, - "unlimited": { - "type": "boolean" - } - } - }, - "RelayerGasSponsor": { - "type": "object", - "required": [ - "id", - "projectId", - "chainId", - "displayName", - "address", - "active", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "displayName": { - "type": "string" - }, - "address": { - "type": "string" - }, - "active": { - "type": "boolean" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "RelayerGasSponsorUsage": { - "type": "object", - "required": [ - "id", - "chainId", - "totalGasUsed", - "totalTxnFees", - "avgGasPrice", - "totalTxns", - "startTime", - "endTime" - ], - "properties": { - "id": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "totalGasUsed": { - "type": "number" - }, - "totalTxnFees": { - "type": "number" - }, - "avgGasPrice": { - "type": "number" - }, - "totalTxns": { - "type": "number" - }, - "startTime": { - "type": "string" - }, - "endTime": { - "type": "string" - } - } - }, - "RelayerTransaction": { - "type": "object", - "required": [ - "txnHash", - "txnNonce", - "txnStatus", - "txnRevertReason", - "requeues", - "queuedAt", - "sentAt", - "minedAt", - "target", - "input", - "txnArgs", - "walletAddress", - "metaTxnNonce", - "gasLimit", - "gasPrice", - "gasUsed", - "gasEstimated", - "usdRate", - "creditsUsed", - "isWhitelisted", - "createdAt", - "updatedAt" - ], - "properties": { - "txnHash": { - "type": "string" - }, - "txnNonce": { - "type": "string" - }, - "metaTxnID": { - "type": "string" - }, - "txnStatus": { - "type": "string" - }, - "txnRevertReason": { - "type": "string" - }, - "requeues": { - "type": "number" - }, - "queuedAt": { - "type": "string" - }, - "sentAt": { - "type": "string" - }, - "minedAt": { - "type": "string" - }, - "target": { - "type": "string" - }, - "input": { - "type": "string" - }, - "txnArgs": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "txnReceipt": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "walletAddress": { - "type": "string" - }, - "metaTxnNonce": { - "type": "string" - }, - "gasLimit": { - "type": "number" - }, - "gasPrice": { - "type": "string" - }, - "gasUsed": { - "type": "number" - }, - "gasEstimated": { - "type": "number" - }, - "gasFeeMarkup": { - "type": "number" - }, - "usdRate": { - "type": "string" - }, - "creditsUsed": { - "type": "number" - }, - "isWhitelisted": { - "type": "boolean" - }, - "gasSponsor": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "IndexerWebhook": { - "type": "object", - "required": [ - "id", - "projectId", - "chainId", - "contractAddress", - "eventSig", - "webhookUrl", - "disabled", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "contractAddress": { - "type": "string" - }, - "eventSig": { - "type": "string" - }, - "webhookUrl": { - "type": "string" - }, - "disabled": { - "type": "boolean" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "ContractSource": { - "type": "object", - "required": [ - "id", - "uid", - "contractType", - "name", - "description", - "author", - "license", - "audited", - "moreInfoUrl", - "disabled", - "factorySourceUid", - "abi", - "bytecode", - "bytecodeHash", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "uid": { - "type": "string" - }, - "contractType": { - "type": "string" - }, - "projectId": { - "type": "number" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string" - }, - "author": { - "type": "string" - }, - "license": { - "type": "string" - }, - "audited": { - "type": "boolean" - }, - "moreInfoUrl": { - "type": "string" - }, - "disabled": { - "type": "boolean" - }, - "factorySourceUid": { - "type": "string" - }, - "abi": { - "type": "string" - }, - "bytecode": { - "type": "string" - }, - "bytecodeHash": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "ContractFactory": { - "type": "object", - "required": [ - "id", - "chainId", - "contractAddress", - "uid", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "contractAddress": { - "type": "string" - }, - "uid": { - "type": "string" - }, - "abi": { - "type": "string" - }, - "bytecode": { - "type": "string" - }, - "bytecodeHash": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "NewContractSource": { - "type": "object", - "required": [ - "uid", - "name", - "contractType", - "bytecode", - "abi" - ], - "properties": { - "uid": { - "type": "string" - }, - "name": { - "type": "string" - }, - "description": { - "type": "string" - }, - "author": { - "type": "string" - }, - "license": { - "type": "string" - }, - "audited": { - "type": "boolean" - }, - "moreInfoUrl": { - "type": "string" - }, - "disabled": { - "type": "boolean" - }, - "contractType": { - "type": "string" - }, - "bytecode": { - "type": "string" - }, - "abi": { - "type": "string" - } - } - }, - "Page": { - "type": "object", - "properties": { - "pageSize": { - "type": "number" - }, - "page": { - "type": "number" - }, - "column": { - "type": "string" - }, - "more": { - "type": "boolean" - }, - "before": { - "type": "object" - }, - "after": { - "type": "object" - }, - "sort": { - "type": "array", - "description": "[]SortBy", - "items": { - "$ref": "#/components/schemas/SortBy" - } - } - } - }, - "SortBy": { - "type": "object", - "required": [ - "column" - ], - "properties": { - "column": { - "type": "string" - }, - "order": { - "$ref": "#/components/schemas/SortOrder" - } - } - }, - "BillingSettings": { - "type": "object", - "required": [ - "maxKeys", - "rateLimit", - "creditsIncludedWarn", - "creditsIncludedMax", - "creditsOverageWarn", - "creditsOverageMax", - "priceSubscriptionTier", - "priceCreditOverage", - "marketplaceFee", - "gasFeeMarkup", - "blockTransactions", - "providerSettings" - ], - "properties": { - "maxKeys": { - "type": "number" - }, - "rateLimit": { - "type": "number" - }, - "creditsIncludedWarn": { - "type": "number" - }, - "creditsIncludedMax": { - "type": "number" - }, - "creditsOverageWarn": { - "type": "number" - }, - "creditsOverageMax": { - "type": "number" - }, - "priceSubscriptionTier": { - "type": "string" - }, - "priceCreditOverage": { - "type": "string" - }, - "marketplaceFee": { - "type": "string" - }, - "gasFeeMarkup": { - "type": "string" - }, - "blockTransactions": { - "type": "boolean" - }, - "providerSettings": { - "type": "object", - "description": "map", - "additionalProperties": { - "$ref": "#/components/schemas/BillingProviderSettings" - } - } - } - }, - "BillingProviderSettings": { - "type": "object", - "required": [ - "priceSubscriptionTier", - "priceCreditOverage", - "disabled" - ], - "properties": { - "priceSubscriptionTier": { - "type": "string" - }, - "priceCreditOverage": { - "type": "string" - }, - "disabled": { - "type": "boolean" - } - } - }, - "BillingOverride": { - "type": "object", - "required": [ - "extraKeys", - "discountSubscriptionTier", - "discountCreditOverage", - "forceAllowTransactions" - ], - "properties": { - "extraKeys": { - "type": "number" - }, - "rateLimit": { - "type": "number" - }, - "creditsIncludedWarn": { - "type": "number" - }, - "creditsOverageWarn": { - "type": "number" - }, - "creditsOverageMax": { - "type": "number" - }, - "discountSubscriptionTier": { - "type": "number" - }, - "discountCreditOverage": { - "type": "number" - }, - "marketplaceFee": { - "type": "number" - }, - "forceAllowTransactions": { - "type": "boolean" - } - } - }, - "SubscriptionInfo": { - "type": "object", - "required": [ - "current", - "subscriptionUrl", - "cycleStart", - "cycleEnd", - "settings", - "creditsBonus", - "creditUsage", - "creditBalance", - "creditOverage" - ], - "properties": { - "current": { - "$ref": "#/components/schemas/ProjectSubscription" - }, - "subscriptionUrl": { - "type": "string" - }, - "cycleStart": { - "type": "string" - }, - "cycleEnd": { - "type": "string" - }, - "plannedDowngrade": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "pendingUpgrade": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "settings": { - "$ref": "#/components/schemas/BillingSettings" - }, - "creditsBonus": { - "type": "number" - }, - "creditUsage": { - "type": "number" - }, - "creditBalance": { - "type": "number" - }, - "creditOverage": { - "type": "number" - }, - "extraCharged": { - "type": "string" - } - } - }, - "PaymentHistory": { - "type": "object", - "required": [ - "totalPayments", - "payments" - ], - "properties": { - "totalPayments": { - "type": "number" - }, - "payments": { - "type": "array", - "description": "[]Payment", - "items": { - "$ref": "#/components/schemas/Payment" - } - } - } - }, - "Redirect": { - "type": "object", - "required": [ - "url" - ], - "properties": { - "url": { - "type": "string" - } - } - }, - "StripeEventData": { - "type": "object", - "required": [ - "object" - ], - "properties": { - "object": { - "$ref": "#/components/schemas/StripeEventDataObject" - } - } - }, - "StripeEventDataObject": { - "type": "object", - "required": [ - "id", - "object" - ], - "properties": { - "id": { - "type": "string" - }, - "object": { - "type": "string" - } - } - }, - "Payment": { - "type": "object", - "required": [ - "id", - "projectId", - "provider", - "externalTxnID", - "createdAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "status": { - "$ref": "#/components/schemas/PaymentStatus" - }, - "provider": { - "$ref": "#/components/schemas/PaymentProvider" - }, - "externalTxnID": { - "type": "string" - }, - "createdAt": { - "type": "string" - } - } - }, - "PaymentLog": { - "type": "object", - "required": [ - "id", - "paymentID", - "data", - "createdAt" - ], - "properties": { - "id": { - "type": "number" - }, - "paymentID": { - "type": "number" - }, - "data": { - "$ref": "#/components/schemas/PaymentLogData" - }, - "createdAt": { - "type": "string" - } - } - }, - "PaymentLogData": { - "type": "object", - "required": [ - "type", - "data" - ], - "properties": { - "type": { - "type": "string" - }, - "data": { - "type": "object" - } - } - }, - "InvoicesReturn": { - "type": "object", - "required": [ - "hasMore", - "invoices" - ], - "properties": { - "hasMore": { - "type": "boolean" - }, - "invoices": { - "type": "array", - "description": "[]Invoice", - "items": { - "$ref": "#/components/schemas/Invoice" - } - } - } - }, - "Invoice": { - "type": "object", - "required": [ - "id", - "date", - "amount", - "paid", - "url" - ], - "properties": { - "id": { - "type": "string" - }, - "date": { - "type": "string" - }, - "amount": { - "type": "string" - }, - "paid": { - "type": "boolean" - }, - "url": { - "type": "string" - } - } - }, - "SubscriptionPlans": { - "type": "object", - "required": [ - "configs" - ], - "properties": { - "configs": { - "type": "object", - "description": "map", - "additionalProperties": { - "$ref": "#/components/schemas/SubscriptionPlan" - } - } - } - }, - "SubscriptionPlan": { - "type": "object", - "required": [ - "tier", - "settings", - "features" - ], - "properties": { - "tier": { - "$ref": "#/components/schemas/SubscriptionTier" - }, - "settings": { - "$ref": "#/components/schemas/BillingSettings" - }, - "features": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - } - } - }, - "CollectionInfo": { - "type": "object", - "required": [ - "chainId", - "title", - "type", - "image", - "address", - "link", - "description", - "featured" - ], - "properties": { - "chainId": { - "type": "number" - }, - "title": { - "type": "string" - }, - "type": { - "type": "string" - }, - "image": { - "type": "string" - }, - "address": { - "type": "string" - }, - "link": { - "type": "string" - }, - "description": { - "type": "string" - }, - "featured": { - "type": "boolean" - } - } - }, - "ContractInfo": { - "type": "object", - "required": [ - "chainId", - "address", - "name", - "type", - "symbol", - "logoURI", - "deployed", - "bytecodeHash", - "extensions", - "contentHash", - "updatedAt" - ], - "properties": { - "chainId": { - "type": "number" - }, - "address": { - "type": "string" - }, - "name": { - "type": "string" - }, - "type": { - "type": "string" - }, - "symbol": { - "type": "string" - }, - "decimals": { - "type": "number" - }, - "logoURI": { - "type": "string" - }, - "deployed": { - "type": "boolean" - }, - "bytecodeHash": { - "type": "string" - }, - "extensions": { - "type": "object" - }, - "contentHash": { - "type": "number" - }, - "updatedAt": { - "type": "string" - } - } - }, - "ProjectInvitation": { - "type": "object", - "required": [ - "id", - "projectId", - "code", - "access", - "expiresAt", - "usageCount", - "createdAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "code": { - "type": "string" - }, - "access": { - "$ref": "#/components/schemas/CollaboratorAccess" - }, - "expiresAt": { - "type": "string" - }, - "usageCount": { - "type": "number" - }, - "signupLimit": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" - } - } - }, - "MarketplaceConfigSchema": { - "type": "object", - "required": [ - "version", - "config", - "style" - ], - "properties": { - "version": { - "type": "number" - }, - "config": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "style": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - } - } - }, - "MarketplaceConfig": { - "type": "object", - "required": [ - "id", - "projectId", - "version", - "config", - "settings", - "style" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "version": { - "type": "number" - }, - "config": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "settings": { - "$ref": "#/components/schemas/MarketplaceSettings" - }, - "style": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "MarketplaceWalletOptions": { - "type": "object", - "required": [ - "walletType", - "oidcIssuers", - "connectors", - "includeEIP6963Wallets" - ], - "properties": { - "walletType": { - "$ref": "#/components/schemas/MarketplaceWallet" - }, - "oidcIssuers": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "string" - } - }, - "connectors": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "includeEIP6963Wallets": { - "type": "boolean" - } - } - }, - "MarketplaceCollection": { - "type": "object", - "required": [ - "marketplaceType", - "chainId", - "address", - "feePercetage", - "currencyOptions" - ], - "properties": { - "marketplaceType": { - "$ref": "#/components/schemas/MarketplaceType" - }, - "chainId": { - "type": "number" - }, - "address": { - "type": "string" - }, - "feePercetage": { - "type": "number" - }, - "currencyOptions": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - } - } - }, - "MarketplaceSettings": { - "type": "object", - "required": [ - "publisherId", - "title", - "shortDescription", - "socials", - "faviconUrl", - "landingBannerUrl", - "collections", - "walletOptions", - "landingPageLayout", - "logoUrl", - "bannerUrl" - ], - "properties": { - "publisherId": { - "type": "string" - }, - "title": { - "type": "string" - }, - "shortDescription": { - "type": "string" - }, - "socials": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "string" - } - }, - "faviconUrl": { - "type": "string" - }, - "landingBannerUrl": { - "type": "string" - }, - "collections": { - "type": "array", - "description": "[]MarketplaceCollection", - "items": { - "$ref": "#/components/schemas/MarketplaceCollection" - } - }, - "walletOptions": { - "$ref": "#/components/schemas/MarketplaceWalletOptions" - }, - "landingPageLayout": { - "type": "string" - }, - "logoUrl": { - "type": "string" - }, - "bannerUrl": { - "type": "string" - }, - "fontUrl": { - "type": "string" - }, - "ogImage": { - "type": "string" - } - } - }, - "MarketplaceHostname": { - "type": "object", - "required": [ - "id", - "marketplaceConfigId", - "hostname", - "isDefaultHostname", - "isCustomDomain", - "createdAt" - ], - "properties": { - "id": { - "type": "number" - }, - "marketplaceConfigId": { - "type": "number" - }, - "hostname": { - "type": "string" - }, - "isDefaultHostname": { - "type": "boolean" - }, - "isCustomDomain": { - "type": "boolean" - }, - "createdAt": { - "type": "string" - } - } - }, - "OffchainInventory": { - "type": "object", - "required": [ - "id", - "projectId", - "chainId", - "externalProductId", - "paymentTokenAddress", - "paymentTokenType", - "paymentTokenId", - "paymentAmount", - "paymentRecipient" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "chainId": { - "type": "number" - }, - "externalProductId": { - "type": "string" - }, - "paymentTokenAddress": { - "type": "string" - }, - "paymentTokenType": { - "$ref": "#/components/schemas/TokenType" - }, - "paymentTokenId": { - "type": "number" - }, - "paymentAmount": { - "type": "number" - }, - "paymentRecipient": { - "type": "string" - }, - "chainedCallAddress": { - "type": "string" - }, - "chainedCallData": { - "type": "string" - }, - "allowCrossChainPayments": { - "type": "boolean" - }, - "callbackURL": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" - } - } - }, - "OffchainPayment": { - "type": "object", - "required": [ - "id", - "offchainInventoryId", - "productRecipient", - "paymentChainId", - "paymentTokenAddress", - "expiration", - "createdAt" - ], - "properties": { - "id": { - "type": "number" - }, - "offchainInventoryId": { - "type": "number" - }, - "productRecipient": { - "type": "string" - }, - "paymentChainId": { - "type": "number" - }, - "paymentTokenAddress": { - "type": "string" - }, - "expiration": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "completedAt": { - "type": "string" - }, - "processedAt": { - "type": "string" - } - } - }, - "WalletConfigSchema": { - "type": "object", - "required": [ - "version", - "config" - ], - "properties": { - "version": { - "type": "number" - }, - "config": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - } - } - }, - "WalletConfig": { - "type": "object", - "required": [ - "version", - "projectId", - "platform", - "config" - ], - "properties": { - "id": { - "type": "number" - }, - "version": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "platform": { - "type": "string" - }, - "config": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "ProjectFile": { - "type": "object", - "required": [ - "id", - "projectId", - "scope", - "mimetype", - "filepath", - "contents", - "hash", - "url", - "createdAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "scope": { - "$ref": "#/components/schemas/FileScope" - }, - "mimetype": { - "type": "string" - }, - "filepath": { - "type": "string" - }, - "contents": { - "type": "array", - "description": "[]byte", - "items": { - "type": "string" - } - }, - "hash": { - "type": "array", - "description": "[]byte", - "items": { - "type": "string" - } - }, - "url": { - "type": "string" - }, - "createdAt": { - "type": "string" - } - } - }, - "EmailTemplate": { - "type": "object", - "required": [ - "id", - "projectId", - "subject", - "introText", - "logoUrl", - "placeholders", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "templateType": { - "$ref": "#/components/schemas/EmailTemplateType" - }, - "projectId": { - "type": "number" - }, - "subject": { - "type": "string" - }, - "introText": { - "type": "string" - }, - "logoUrl": { - "type": "string" - }, - "template": { - "type": "string" - }, - "placeholders": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" - } - } - }, - "TaskRunner": { - "type": "object", - "required": [ - "id", - "workGroup", - "runAt" - ], - "properties": { - "id": { - "type": "number" - }, - "workGroup": { - "type": "string" - }, - "runAt": { - "type": "string" - } - } - }, - "Task": { - "type": "object", - "required": [ - "id", - "queue", - "status", - "try", - "payload", - "hash" - ], - "properties": { - "id": { - "type": "number" - }, - "queue": { - "type": "string" - }, - "status": { - "$ref": "#/components/schemas/TaskStatus" - }, - "try": { - "type": "number" - }, - "runAt": { - "type": "string" - }, - "lastRanAt": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "payload": { - "type": "array", - "description": "[]byte", - "items": { - "type": "string" - } - }, - "hash": { - "type": "string" - } - } - }, - "QueryFilter": { - "type": "object", - "required": [ - "projectId" - ], - "properties": { - "projectId": { - "type": "number" - }, - "startDate": { - "type": "string" - }, - "endDate": { - "type": "string" - }, - "dateInterval": { - "$ref": "#/components/schemas/DateInterval" - }, - "collections": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "tokenId": { - "type": "string" - } - } - }, - "Chart": { - "type": "object", - "required": [ - "value", - "label" - ], - "properties": { - "value": { - "type": "number" - }, - "label": { - "type": "string" - } - } - }, - "MultiValueChart": { - "type": "object", - "required": [ - "value", - "label" - ], - "properties": { - "value": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "number" - } - }, - "label": { - "type": "string" - } - } - }, - "QueryResult": { - "type": "object", - "required": [ - "collection", - "source", - "volumeUSD", - "numTokens", - "numTxns" - ], - "properties": { - "collection": { - "type": "string" - }, - "source": { - "type": "string" - }, - "tokenId": { - "type": "string" - }, - "volumeUSD": { - "type": "number" - }, - "numTokens": { - "type": "number" - }, - "numTxns": { - "type": "number" - } - } - }, - "CreditBonus": { - "type": "object", - "required": [ - "id", - "projectId", - "amount", - "balance", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "amount": { - "type": "number" - }, - "balance": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "OpenIdProvider": { - "type": "object", - "required": [ - "iss", - "aud" - ], - "properties": { - "iss": { - "type": "string" - }, - "aud": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - } - } - }, - "WaasSettings": { - "type": "object", - "required": [ - "recoveryAddress", - "authConfig", - "tenantState", - "emailAuth", - "oidcProviders", - "allowedOrigins", - "updateCode", - "tenantKey" - ], - "properties": { - "recoveryAddress": { - "type": "string" - }, - "authConfig": { - "$ref": "#/components/schemas/WaasAuthConfig" - }, - "tenantState": { - "$ref": "#/components/schemas/WaasTenantState" - }, - "emailAuth": { - "type": "boolean" - }, - "oidcProviders": { - "type": "array", - "description": "[]OpenIdProvider", - "items": { - "$ref": "#/components/schemas/OpenIdProvider" - } - }, - "allowedOrigins": { - "type": "array", - "description": "[]string", - "items": { - "type": "string" - } - }, - "updateCode": { - "type": "string" - }, - "tenantKey": { - "type": "string" - } - } - }, - "WaasAuthEmailConfig": { - "type": "object", - "required": [ - "enabled" - ], - "properties": { - "enabled": { - "type": "boolean" - } - } - }, - "WaasAuthGuestConfig": { - "type": "object", - "required": [ - "enabled" - ], - "properties": { - "enabled": { - "type": "boolean" - } - } - }, - "WaasAuthPlayfabConfig": { - "type": "object", - "required": [ - "enabled" - ], - "properties": { - "enabled": { - "type": "boolean" - }, - "titleId": { - "type": "string" - } - } - }, - "WaasAuthStytchConfig": { - "type": "object", - "required": [ - "enabled" - ], - "properties": { - "enabled": { - "type": "boolean" - }, - "projectId": { - "type": "string" - } - } - }, - "WaasAuthConfig": { - "type": "object", - "properties": { - "email": { - "$ref": "#/components/schemas/WaasAuthEmailConfig" - }, - "guest": { - "$ref": "#/components/schemas/WaasAuthGuestConfig" - }, - "playfab": { - "$ref": "#/components/schemas/WaasAuthPlayfabConfig" - }, - "stytch": { - "$ref": "#/components/schemas/WaasAuthStytchConfig" - } - } - }, - "WaasWalletStatus": { - "type": "object", - "required": [ - "chainId", - "address", - "deployed" - ], - "properties": { - "chainId": { - "type": "number" - }, - "address": { - "type": "string" - }, - "deployed": { - "type": "boolean" - } - } - }, - "RawData": { - "type": "object", - "required": [ - "data" - ], - "properties": { - "data": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "object" - } - } - } - }, - "Audience": { - "type": "object", - "required": [ - "id", - "projectId", - "name", - "contactCount", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "name": { - "type": "string" - }, - "contactCount": { - "type": "number" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" - } - } - }, - "AudienceContact": { - "type": "object", - "required": [ - "id", - "audienceId", - "address", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "audienceId": { - "type": "number" - }, - "name": { - "type": "string" - }, - "address": { - "type": "string" - }, - "email": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - } - }, - "Trial": { - "type": "object", - "required": [ - "id", - "projectId", - "type", - "startAt", - "endAt" - ], - "properties": { - "id": { - "type": "number" - }, - "projectId": { - "type": "number" - }, - "type": { - "$ref": "#/components/schemas/TrialType" - }, - "startAt": { - "type": "string" - }, - "endAt": { - "type": "string" - } - } - }, - "ExtendedMarketplaceConfig": { - "type": "object", - "required": [ - "config", - "accessKey", - "waasEmailEnabled", - "waasTenantKey", - "waasProviders" - ], - "properties": { - "config": { - "$ref": "#/components/schemas/MarketplaceSettings" - }, - "accessKey": { - "type": "string" - }, - "waasEmailEnabled": { - "type": "boolean" - }, - "waasTenantKey": { - "type": "string" - }, - "waasProviders": { - "type": "array", - "description": "[]OpenIdProvider", - "items": { - "$ref": "#/components/schemas/OpenIdProvider" - } - } - } - }, - "Customer": { - "type": "object", - "required": [ - "id", - "name", - "tier", - "metadata", - "createdAt", - "updatedAt" - ], - "properties": { - "id": { - "type": "number" - }, - "name": { - "type": "string" - }, - "tier": { - "$ref": "#/components/schemas/CustomerTier" - }, - "metadata": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "string" - } - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - }, - "deletedAt": { - "type": "string" - } - } - }, - "CustomerFilter": { - "type": "object", - "properties": { - "name": { - "type": "string" - }, - "tier": { - "$ref": "#/components/schemas/CustomerTier" - } - } - }, - "Builder_TotalCompute_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_ComputeByService_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_DailyComputeByType_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_DailyComputeByService_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_GetOrderbookCollections_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsTotal_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsDaily_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsMonthly_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsByCountry_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsByDevice_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsByBrowser_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsByOS_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsTxnSentTotal_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsTxnSentDaily_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WalletsTxnSentMonthly_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MarketTxnEventTotal_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MarketTxnEventDaily_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MarketTxnEventMonthly_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MarketWalletsTotal_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MarketWalletsDaily_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MarketWalletsMonthly_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_TotalWalletTxnConversionRate_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_DailyWalletTxnConversionRate_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MonthlyWalletTxnConversionRate_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_DailyNewWallets_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MonthlyNewWallets_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_TotalNewWallets_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_AverageDAU_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_RollingStickiness_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_AverageStickiness_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_D1RetentionByCohort_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_D3RetentionByCohort_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_D7RetentionByCohort_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_D14RetentionByCohort_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_D28RetentionByCohort_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_AverageD1Retention_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_AverageD3Retention_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_AverageD7Retention_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_AverageD14Retention_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_AverageD28Retention_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MonthlyActiveWalletsBySegment_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_MonthlyTransactingWalletsBySegment_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_WeeklyActiveWallets_Request": { - "type": "object", - "properties": { - "filter": { - "$ref": "#/components/schemas/QueryFilter" - } - } - }, - "Builder_TotalCompute_Response": { - "type": "object", - "properties": { - "computeStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_ComputeByService_Response": { - "type": "object", - "properties": { - "computeStats": { - "type": "array", - "description": "[]MultiValueChart", - "items": { - "$ref": "#/components/schemas/MultiValueChart" - } - } - } - }, - "Builder_DailyComputeByType_Response": { - "type": "object", - "properties": { - "computeStats": { - "type": "array", - "description": "[]MultiValueChart", - "items": { - "$ref": "#/components/schemas/MultiValueChart" - } - } - } - }, - "Builder_DailyComputeByService_Response": { - "type": "object", - "properties": { - "computeStats": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - } - }, - "Builder_GetOrderbookCollections_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]QueryResult", - "items": { - "$ref": "#/components/schemas/QueryResult" - } - } - } - }, - "Builder_WalletsTotal_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_WalletsDaily_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_WalletsMonthly_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_WalletsByCountry_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_WalletsByDevice_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_WalletsByBrowser_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_WalletsByOS_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_WalletsTxnSentTotal_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_WalletsTxnSentDaily_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_WalletsTxnSentMonthly_Response": { - "type": "object", - "properties": { - "walletStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_MarketTxnEventTotal_Response": { - "type": "object", - "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_MarketTxnEventDaily_Response": { - "type": "object", - "properties": { - "marketStats": { - "type": "array", - "description": "[]MultiValueChart", - "items": { - "$ref": "#/components/schemas/MultiValueChart" - } - } - } - }, - "Builder_MarketTxnEventMonthly_Response": { - "type": "object", - "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_MarketWalletsTotal_Response": { - "type": "object", - "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_MarketWalletsDaily_Response": { - "type": "object", - "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_MarketWalletsMonthly_Response": { - "type": "object", - "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_TotalWalletTxnConversionRate_Response": { - "type": "object", - "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_DailyWalletTxnConversionRate_Response": { - "type": "object", - "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_MonthlyWalletTxnConversionRate_Response": { - "type": "object", - "properties": { - "marketStats": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_DailyNewWallets_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_MonthlyNewWallets_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_TotalNewWallets_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_AverageDAU_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_RollingStickiness_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_AverageStickiness_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_D1RetentionByCohort_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_D3RetentionByCohort_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_D7RetentionByCohort_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_D14RetentionByCohort_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_D28RetentionByCohort_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_AverageD1Retention_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_AverageD3Retention_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_AverageD7Retention_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_AverageD14Retention_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_AverageD28Retention_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - }, - "Builder_MonthlyActiveWalletsBySegment_Response": { - "type": "object", - "properties": { - "data": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - } - }, - "Builder_MonthlyTransactingWalletsBySegment_Response": { - "type": "object", - "properties": { - "data": { - "type": "object", - "description": "map", - "additionalProperties": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - } - }, - "Builder_WeeklyActiveWallets_Response": { - "type": "object", - "properties": { - "data": { - "type": "array", - "description": "[]Chart", - "items": { - "$ref": "#/components/schemas/Chart" - } - } - } - } - }, - "securitySchemes": { - "ApiKeyAuth": { - "type": "apiKey", - "in": "header", - "description": "Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI", - "name": "X-Access-Key" - }, - "BearerAuth": { - "type": "http", - "scheme": "bearer", - "bearerFormat": "JWT", - "description": "Secret JWT token for authenticating requests obtained from Sequence Builder - should not be exposed publicly." - } - } - }, - "info": { - "title": "Analytics Api", - "version": "" - }, - "openapi": "3.0.0", - "paths": { - "/rpc/Analytics/TotalCompute": { - "post": { - "summary": "TotalCompute", - "description": "Get total compute statistics", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_TotalCompute_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "DAY" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_TotalCompute_Response" - }, - "examples": { - "0": { - "value": { - "computeStats": [ - { - "value": 100, - "label": "2024-09-30" - }, - { - "value": 150, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/ComputeByService": { - "post": { - "summary": "ComputeByService", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_ComputeByService_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "DAY" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_ComputeByService_Response" - }, - "examples": { - "0": { - "value": { - "computeStats": [ - { - "value": { - "service1": 100, - "service2": 150 - }, - "label": "2024-09-30" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get compute statistics by service", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/DailyComputeByType": { - "post": { - "summary": "DailyComputeByType", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_DailyComputeByType_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "DAY" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_DailyComputeByType_Response" - }, - "examples": { - "0": { - "value": { - "computeStats": [ - { - "value": { - "type1": 100, - "type2": 150 - }, - "label": "2024-09-30" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get daily compute statistics by type", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/DailyComputeByService": { - "post": { - "summary": "DailyComputeByService", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_DailyComputeByService_Request" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_DailyComputeByService_Response" - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "security": [ - { - "ApiKeyAuth": [ - "AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI" - ] - } - ] - } - }, - "/rpc/Analytics/GetOrderbookCollections": { - "post": { - "summary": "GetOrderbookCollections", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_GetOrderbookCollections_Request" - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_GetOrderbookCollections_Response" - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "security": [ - { - "ApiKeyAuth": [ - "AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsTotal": { - "post": { - "summary": "WalletsTotal", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsTotal_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsTotal_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get total wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsDaily": { - "post": { - "summary": "WalletsDaily", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsDaily_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "DAY" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsDaily_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": "2", - "label": "2024-09-23" - }, - { - "value": 3, - "label": "2024-09-29" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get daily wallet statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsMonthly": { - "post": { - "summary": "WalletsMonthly", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsMonthly_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10", - "dateInterval": "MONTH" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsMonthly_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 20, - "label": "2024-09" - }, - { - "value": 30, - "label": "2024-10" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get monthly wallet statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsByCountry": { - "post": { - "summary": "WalletsByCountry", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsByCountry_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsByCountry_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 50, - "label": "US" - }, - { - "value": 30, - "label": "UK" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get wallet statistics by country", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsByDevice": { - "post": { - "summary": "WalletsByDevice", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsByDevice_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsByDevice_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 200, - "label": "モバイル" - }, - { - "value": 150, - "label": "Desktop" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get wallet statistics by device", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsByBrowser": { - "post": { - "summary": "WalletsByBrowser", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsByBrowser_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsByBrowser_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 150, - "label": "Chrome" - }, - { - "value": 100, - "label": "Firefox" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get wallet statistics by browser", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsByOS": { - "post": { - "summary": "WalletsByOS", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsByOS_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsByOS_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 180, - "label": "Windows" - }, - { - "value": 120, - "label": "MacOS" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get wallet statistics by operating system", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsTxnSentTotal": { - "post": { - "summary": "WalletsTxnSentTotal", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentTotal_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentTotal_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 1000, - "label": "Total Transactions" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get total transaction statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsTxnSentDaily": { - "post": { - "summary": "WalletsTxnSentDaily", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentDaily_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentDaily_Response" - }, - "examples": { - "0": { - "value": { - "walletStats": [ - { - "value": 45, - "label": "2024-09-30" - }, - { - "value": 52, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get daily transaction statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WalletsTxnSentMonthly": { - "post": { - "summary": "WalletsTxnSentMonthly", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentMonthly_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WalletsTxnSentMonthly_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get monthly transaction statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MarketTxnEventTotal": { - "post": { - "summary": "MarketTxnEventTotal", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventTotal_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventTotal_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 500, - "label": "Total Events" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get total market transaction events", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MarketTxnEventDaily": { - "post": { - "summary": "MarketTxnEventDaily", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventDaily_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventDaily_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": { - "buy": 25, - "sell": 20 - }, - "label": "2024-09-30" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get daily market transaction events", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MarketTxnEventMonthly": { - "post": { - "summary": "MarketTxnEventMonthly", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventMonthly_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketTxnEventMonthly_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get monthly market transaction statistics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MarketWalletsTotal": { - "post": { - "summary": "MarketWalletsTotal", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsTotal_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsTotal_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 1500, - "label": "Total Market Wallets" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get total market wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MarketWalletsDaily": { - "post": { - "summary": "MarketWalletsDaily", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsDaily_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsDaily_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 75, - "label": "2024-09-30" - }, - { - "value": 82, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get daily market wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MarketWalletsMonthly": { - "post": { - "summary": "MarketWalletsMonthly", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsMonthly_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MarketWalletsMonthly_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 450, - "label": "2024-09" - }, - { - "value": 520, - "label": "2024-10" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get monthly market wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/TotalWalletTxnConversionRate": { - "post": { - "summary": "TotalWalletTxnConversionRate", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_TotalWalletTxnConversionRate_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_TotalWalletTxnConversionRate_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 0.45, - "label": "Conversion Rate" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get total wallet transaction conversion rate", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/DailyWalletTxnConversionRate": { - "post": { - "summary": "DailyWalletTxnConversionRate", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_DailyWalletTxnConversionRate_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_DailyWalletTxnConversionRate_Response" - }, - "examples": { - "0": { - "value": { - "marketStats": [ - { - "value": 0.42, - "label": "2024-09-30" - }, - { - "value": 0.45, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get daily wallet transaction conversion rate", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MonthlyWalletTxnConversionRate": { - "post": { - "summary": "MonthlyWalletTxnConversionRate", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MonthlyWalletTxnConversionRate_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MonthlyWalletTxnConversionRate_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get monthly market conversions on your marketplace", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/DailyNewWallets": { - "post": { - "summary": "DailyNewWallets", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_DailyNewWallets_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_DailyNewWallets_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 25, - "label": "2024-09-30" - }, - { - "value": 30, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get daily new wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MonthlyNewWallets": { - "post": { - "summary": "MonthlyNewWallets", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MonthlyNewWallets_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MonthlyNewWallets_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 750, - "label": "2024-09" - }, - { - "value": 820, - "label": "2024-10" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get monthly new wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/TotalNewWallets": { - "post": { - "summary": "TotalNewWallets", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_TotalNewWallets_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_TotalNewWallets_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get Total Wallets over a time interval", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/AverageDAU": { - "post": { - "summary": "AverageDAU", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageDAU_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageDAU_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get average daily active users", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/RollingStickiness": { - "post": { - "summary": "RollingStickiness", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_RollingStickiness_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_RollingStickiness_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.35, - "label": "2024-09-30" - }, - { - "value": 0.38, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get rolling stickiness metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/AverageStickiness": { - "post": { - "summary": "AverageStickiness", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageStickiness_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageStickiness_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get average stickiness metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/D1RetentionByCohort": { - "post": { - "summary": "D1RetentionByCohort", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D1RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D1RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.65, - "label": "2024-09-30" - }, - { - "value": 0.68, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get D1 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/D3RetentionByCohort": { - "post": { - "summary": "D3RetentionByCohort", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D3RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D3RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.45, - "label": "2024-09-30" - }, - { - "value": 0.48, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get D3 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/D7RetentionByCohort": { - "post": { - "summary": "D7RetentionByCohort", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D7RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D7RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.35, - "label": "2024-09-30" - }, - { - "value": 0.38, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get D7 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/D14RetentionByCohort": { - "post": { - "summary": "D14RetentionByCohort", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D14RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D14RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.25, - "label": "2024-09-30" - }, - { - "value": 0.28, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get D14 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/D28RetentionByCohort": { - "post": { - "summary": "D28RetentionByCohort", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D28RetentionByCohort_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_D28RetentionByCohort_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 0.15, - "label": "2024-09-30" - }, - { - "value": 0.18, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get D28 retention by cohort", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/AverageD1Retention": { - "post": { - "summary": "AverageD1Retention", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD1Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD1Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get average D1 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/AverageD3Retention": { - "post": { - "summary": "AverageD3Retention", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD3Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD3Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get average D3 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/AverageD7Retention": { - "post": { - "summary": "AverageD7Retention", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD7Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD7Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get average D7 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/AverageD14Retention": { - "post": { - "summary": "AverageD14Retention", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD14Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD14Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get average D14 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/AverageD28Retention": { - "post": { - "summary": "AverageD28Retention", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD28Retention_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_AverageD28Retention_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 250, - "label": "2024-09-30" - }, - { - "value": 275, - "label": "2024-10-01" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get average D28 retention metrics", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MonthlyActiveWalletsBySegment": { - "post": { - "summary": "MonthlyActiveWalletsBySegment", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MonthlyActiveWalletsBySegment_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MonthlyActiveWalletsBySegment_Response" - }, - "examples": { - "0": { - "value": { - "data": { - "segment1": [ - { - "value": 150, - "label": "2024-09" - }, - { - "value": 180, - "label": "2024-10" - } - ], - "segment2": [ - { - "value": 120, - "label": "2024-09" - }, - { - "value": 140, - "label": "2024-10" - } - ] - } - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get monthly active wallets by segment", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/MonthlyTransactingWalletsBySegment": { - "post": { - "summary": "MonthlyTransactingWalletsBySegment", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MonthlyTransactingWalletsBySegment_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_MonthlyTransactingWalletsBySegment_Response" - }, - "examples": { - "0": { - "value": { - "data": { - "segment1": [ - { - "value": 100, - "label": "2024-09" - }, - { - "value": 120, - "label": "2024-10" - } - ], - "segment2": [ - { - "value": 80, - "label": "2024-09" - }, - { - "value": 95, - "label": "2024-10" - } - ] - } - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get monthly transacting wallets by segment", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - }, - "/rpc/Analytics/WeeklyActiveWallets": { - "post": { - "summary": "WeeklyActiveWallets", - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WeeklyActiveWallets_Request" - }, - "examples": { - "0": { - "value": { - "filter": { - "projectId": 122, - "startDate": "2024-09-30", - "endDate": "2024-10-10" - } - } - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/Builder_WeeklyActiveWallets_Response" - }, - "examples": { - "0": { - "value": { - "data": [ - { - "value": 350, - "label": "Week 39" - }, - { - "value": 380, - "label": "Week 40" - } - ] - } - } - } - } - } - }, - "4XX": { - "description": "Client error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcEndpoint" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcRequestFailed" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRoute" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadMethod" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcBadRequest" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcClientDisconnected" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcStreamLost" - }, - { - "$ref": "#/components/schemas/ErrorUnauthorized" - }, - { - "$ref": "#/components/schemas/ErrorPermissionDenied" - }, - { - "$ref": "#/components/schemas/ErrorSessionExpired" - }, - { - "$ref": "#/components/schemas/ErrorMethodNotFound" - }, - { - "$ref": "#/components/schemas/ErrorRequestConflict" - }, - { - "$ref": "#/components/schemas/ErrorServiceDisabled" - }, - { - "$ref": "#/components/schemas/ErrorTimeout" - }, - { - "$ref": "#/components/schemas/ErrorInvalidArgument" - }, - { - "$ref": "#/components/schemas/ErrorNotFound" - }, - { - "$ref": "#/components/schemas/ErrorUserNotFound" - }, - { - "$ref": "#/components/schemas/ErrorProjectNotFound" - }, - { - "$ref": "#/components/schemas/ErrorInvalidTier" - }, - { - "$ref": "#/components/schemas/ErrorEmailTemplateExists" - }, - { - "$ref": "#/components/schemas/ErrorSubscriptionLimit" - }, - { - "$ref": "#/components/schemas/ErrorFeatureNotIncluded" - }, - { - "$ref": "#/components/schemas/ErrorInvalidNetwork" - }, - { - "$ref": "#/components/schemas/ErrorInvitationExpired" - }, - { - "$ref": "#/components/schemas/ErrorAlreadyCollaborator" - } - ] - } - } - } - }, - "5XX": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "oneOf": [ - { - "$ref": "#/components/schemas/ErrorWebrpcBadResponse" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcServerPanic" - }, - { - "$ref": "#/components/schemas/ErrorWebrpcInternalError" - } - ] - } - } - } - } - }, - "description": "Get weekly active wallets", - "tags": [ - "secret" - ], - "security": [ - { - "BearerAuth": [ - "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhY2NvdW50IjoiMHhiZWU3NGU3ZmZkNzdkMThhZDJhOTg2ODEyZGE2MTc5ODk0MDY4ODZjIiwiaWF0IjoxNzQxNjg3NDg4LCJwcm9qZWN0IjoxNjgxNX0.LvTwKf0T6IBK9HuRFboXCNh2YY9d6EwDoQAlGYC80KQ" - ] - } - ] - } - } - }, - "servers": [ - { - "url": "https://api.sequence.app", - "description": "Analytics" - } - ], - "tags": [ - { - "name": "public", - "description": "Endpoints accessible by passing your project-access-key in the header. This is injected whenever you login automatically." - }, - { - "name": "secret", - "description": "Endpoints that require a Sequence service token intended to be secret. You can manually generate one on Sequence Builder and pass it as a Bearer Token." - } - ] -} \ No newline at end of file +{"openapi":"3.0.0","info":{"title":"アナリティクスAPI","version":""},"servers":[{"url":"https://api.sequence.app","description":"アナリティクス"}],"components":{"schemas":{"ErrorWebrpcEndpoint":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpcエンドポイント"},"code":{"type":"number","example":"0"},"msg":{"type":"string","example":"エンドポイントエラー"},"cause":{"type":"string"},"status":{"type":"number","example":"400"}}},"ErrorWebrpcRequestFailed":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpcリクエスト失敗"},"code":{"type":"number","example":"-1"},"msg":{"type":"string","example":"リクエスト失敗"},"cause":{"type":"string"},"status":{"type":"number","example":"400"}}},"ErrorWebrpcBadRoute":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpc不正ルート"},"code":{"type":"number","example":"-2"},"msg":{"type":"string","example":"不正なルート"},"cause":{"type":"string"},"status":{"type":"number","example":"404"}}},"ErrorWebrpcBadMethod":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpc不正メソッド"},"code":{"type":"number","example":"-3"},"msg":{"type":"string","example":"不正なメソッド"},"cause":{"type":"string"},"status":{"type":"number","example":"405"}}},"ErrorWebrpcBadRequest":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpc不正リクエスト"},"code":{"type":"number","example":"-4"},"msg":{"type":"string","example":"不正なリクエスト"},"cause":{"type":"string"},"status":{"type":"number","example":"400"}}},"ErrorWebrpcBadResponse":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpc不正レスポンス"},"code":{"type":"number","example":"-5"},"msg":{"type":"string","example":"不正なレスポンス"},"cause":{"type":"string"},"status":{"type":"number","example":"500"}}},"ErrorWebrpcServerPanic":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpcサーバーパニック"},"code":{"type":"number","example":"-6"},"msg":{"type":"string","example":"サーバーパニック"},"cause":{"type":"string"},"status":{"type":"number","example":"500"}}},"ErrorWebrpcInternalError":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpc内部エラー"},"code":{"type":"number","example":"-7"},"msg":{"type":"string","example":"内部エラー"},"cause":{"type":"string"},"status":{"type":"number","example":"500"}}},"ErrorWebrpcClientAborted":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"WebrpcClientAborted"},"code":{"type":"number","example":"-8"},"msg":{"type":"string","example":"クライアントによってリクエストが中断されました"},"cause":{"type":"string"},"status":{"type":"number","example":"400"}}},"ErrorWebrpcStreamLost":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpcストリーム消失"},"code":{"type":"number","example":"-9"},"msg":{"type":"string","example":"ストリーム消失"},"cause":{"type":"string"},"status":{"type":"number","example":"400"}}},"ErrorWebrpcStreamFinished":{"type":"object","required":["エラー","コード","メッセージ","ステータス"],"properties":{"error":{"type":"string","example":"Webrpcストリーム終了"},"code":{"type":"number","example":"-10"},"msg":{"type":"string","example":"ストリーム終了"},"cause":{"type":"string"},"status":{"type":"number","example":"200"}}},"AnalyticsProjectType":{"type":"string","description":"サーバー側では文字列として表現されます","enum":["すべて","作成済み","関連"]},"DateInterval":{"type":"string","description":"サーバー側ではuint16として表現されます","enum":["日","週","月"]},"QueryFilter":{"type":"object","properties":{"projectId":{"type":"number"},"ecosystemId":{"type":"number"},"startDate":{"type":"string"},"endDate":{"type":"string"},"dateInterval":{"$ref":"#/components/schemas/DateInterval"},"collections":{"type":"配列","description":"[]string","items":{"type":"string"}},"tokenId":{"type":"string"},"projectType":{"$ref":"#/components/schemas/AnalyticsProjectType"}}},"Chart":{"type":"object","required":["値","ラベル"],"properties":{"value":{"type":"number"},"label":{"type":"string"}}},"ChartWithPercentage":{"type":"object","required":["ラベル","合計","パーセンテージ"],"properties":{"label":{"type":"string"},"total":{"type":"number"},"percentage":{"type":"number"}}},"MultiValueChart":{"type":"object","required":["値","ラベル"],"properties":{"value":{"type":"object","description":"map","additionalProperties":{"type":"number"}},"label":{"type":"string"}}},"QueryResult":{"type":"object","required":["コレクション","ソース","取引高(USD)","トークン数","取引数"],"properties":{"collection":{"type":"string"},"source":{"type":"string"},"tokenId":{"type":"string"},"volumeUSD":{"type":"number"},"numTokens":{"type":"number"},"numTxns":{"type":"number"}}},"TokenTransactionData":{"type":"object","required":["コレクションID","コレクション名","トークンID","トークン名","アイテム数量"],"properties":{"collectionId":{"type":"string"},"collectionName":{"type":"string"},"tokenId":{"type":"string"},"tokenName":{"type":"string"},"itemQuantities":{"type":"number"}}},"TrailsTransactionByMode":{"type":"object","required":["モード","ユニーク取引ユーザー数","支払い開始数","支払い完了数","完了率","総手数料","総取引高"],"properties":{"mode":{"type":"string"},"uniqueTransactingUsers":{"type":"number"},"paymentsStarted":{"type":"number"},"paymentsCompleted":{"type":"number"},"completionPercent":{"type":"number"},"totalFees":{"type":"number"},"totalVolume":{"type":"number"}}},"TrailsTransactionByRoute":{"type":"object","required":["元チェーン名","送信先チェーン名","ユニーク取引ユーザー数","支払い開始数","支払い完了数","完了率","平均取引時間","ガス手数料","総手数料","総取引高"],"properties":{"origChainName":{"type":"string"},"destChainName":{"type":"string"},"uniqueTransactingUsers":{"type":"number"},"paymentsStarted":{"type":"number"},"paymentsCompleted":{"type":"number"},"completionPercent":{"type":"number"},"avgTxnDuration":{"type":"number"},"gasFees":{"type":"number"},"totalFees":{"type":"number"},"totalVolume":{"type":"number"}}},"TrailsTransactionByProvider":{"type":"object","required":["プロバイダースワップ","プロバイダーブリッジ","ユニーク取引ユーザー数","支払い開始数","支払い完了数","完了率","平均取引時間","プロバイダー手数料","総手数料","総取引高"],"properties":{"providerSwap":{"type":"string"},"providerBridge":{"type":"string"},"uniqueTransactingUsers":{"type":"number"},"paymentsStarted":{"type":"number"},"paymentsCompleted":{"type":"number"},"completionPercent":{"type":"number"},"avgTxnDuration":{"type":"number"},"providerFees":{"type":"number"},"totalFees":{"type":"number"},"totalVolume":{"type":"number"}}},"TrailsTransactionByCountry":{"type":"object","required":["国","取引ウォレット数","支払い完了数","完了率","総取引高"],"properties":{"country":{"type":"string"},"transactingWallets":{"type":"number"},"paymentsCompleted":{"type":"number"},"completionPercent":{"type":"number"},"totalVolume":{"type":"number"}}},"TrailsTransactionDetail":{"type":"object","required":["日付","チェックアウトID","国","プロバイダー","ホスト名","元取引ハッシュ","送信先取引ハッシュ","元チェーン名","送信先チェーン名","元トークンシンボル","送信先トークンシンボル","プロバイダー手数料","総手数料","総取引高"],"properties":{"date":{"type":"string"},"checkoutId":{"type":"string"},"country":{"type":"string"},"provider":{"type":"string"},"hostname":{"type":"string"},"originTxHash":{"type":"string"},"destTxHash":{"type":"string"},"origChainName":{"type":"string"},"destChainName":{"type":"string"},"origTokenSymbol":{"type":"string"},"destTokenSymbol":{"type":"string"},"providerFee":{"type":"number"},"totalFee":{"type":"number"},"totalVolume":{"type":"number"}}},"Analytics_TotalCompute_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ComputeByService_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyComputeByType_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyComputeByService_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_GetOrderbookCollections_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_CreditsPerDailyActiveUser_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_CreditsPerMonthlyActiveUser_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsTotal_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsDaily_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsMonthly_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByCountry_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByDevice_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByBrowser_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByOS_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByType_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsTxnSentTotal_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsTxnSentDaily_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsTxnSentMonthly_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WalletsByOrigin_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ConnectionsByOrigin_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketTxnEventTotal_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketTxnEventDaily_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketTxnEventMonthly_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketWalletsTotal_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketWalletsDaily_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketWalletsMonthly_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalWalletTxnConversionRate_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyWalletTxnConversionRate_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyWalletTxnConversionRate_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyNewWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyNewWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalNewWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageDAU_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_RollingStickiness_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageStickiness_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D1RetentionByCohort_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D3RetentionByCohort_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D7RetentionByCohort_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D14RetentionByCohort_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_D28RetentionByCohort_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD1Retention_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD3Retention_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD7Retention_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD14Retention_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageD28Retention_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyActiveWalletsBySegment_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyTransactingWalletsBySegment_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WeeklyActiveWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalViews_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyViews_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ViewsByCountry_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ViewsByDevice_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ViewsByOS_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyUniqueVisitors_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyUniqueVisitors_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ActiveSessions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_UserEvents_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalProjects_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalProjectsCreated_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalActiveProjects_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalDevelopers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemActiveDevelopers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemDailyActiveWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyActiveWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemDailyNewProjects_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyNewProjects_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalContracts_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyContracts_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByActiveWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByNewWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsCreated_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyActiveEcoWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemDailyNewWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyNewWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByDeveloperActivity_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByNewDevelopers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalMarketplaces_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyMarketplaces_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemActiveMarketplaces_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByCountry_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByDevice_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByOS_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByBrowser_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByType_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemWalletsByLoginMethod_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalTransactingUsers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyTransactingUsers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTotalTransactionVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemMonthlyTransactionVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByTransactingUsers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_EcosystemTopProjectsByTransactionVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyProjectTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyProjectTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactionsByChain_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactionsByCollection_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactionsByToken_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyProjectTransactionsByCollection_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectTransactionVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyProjectVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyProjectVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectVolumeByChain_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectVolumeByCollection_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalProjectVolumeByToken_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyProjectVolumeByCollection_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TransactionVolumePerUser_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TransactionVolumePerTransactingUser_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalTransactingUsers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyUniqueTransactingUsers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyUniqueTransactingUsers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TransactingUserConversion_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyTransactingUserConversion_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyTransactingUserConversion_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_RepeatingTransactingUserPercentage_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_WeekOnWeekTransactingUserRetention_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthOnMonthTransactingUserRetention_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AvgBalanceOfSequenceWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AvgBalanceOfTransactingSequenceWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyMarketplaceTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyMarketplaceTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsTransacted_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsPurchased_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsSold_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsListed_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsOffered_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceTransactingUsers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyMarketplaceVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyMarketplaceVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageMarketplaceTransactionPrice_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceTradedCollections_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TopMarketplaceBuyers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TopMarketplaceSellers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MarketplaceCollectionTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyShopTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyShopTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopItemsPurchased_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopPurchasers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_DailyShopVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_MonthlyShopVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_AverageShopPurchasePrice_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TopShopBuyers_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ShopCollectionTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalMarketplaceItemsSoldByToken_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalShopItemsSoldByToken_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTotalTransactionVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTotalTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTotalUniqueTransactingWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsAverageTransactionDuration_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsPaymentCompletionPercentage_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByDomain_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByAmount_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyTransactionVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyTransactingWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyActiveWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyAverageTransactionDuration_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsDailyPaymentCompletionPercentage_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyTransactionVolume_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyTransactingWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyActiveWallets_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyAverageTransactionDuration_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsMonthlyPaymentCompletionPercentage_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByMode_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByRoute_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByProvider_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTransactionsByCountry_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TrailsTopTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_ExportTrailsTransactions_Request":{"type":"object","properties":{"filter":{"$ref":"#/components/schemas/QueryFilter"}}},"Analytics_TotalCompute_Response":{"type":"object","properties":{"computeStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_ComputeByService_Response":{"type":"object","properties":{"computeStats":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_DailyComputeByType_Response":{"type":"object","properties":{"computeStats":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_DailyComputeByService_Response":{"type":"object","properties":{"computeStats":{"type":"object","description":"map","additionalProperties":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_GetOrderbookCollections_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]クエリ結果","items":{"$ref":"#/components/schemas/QueryResult"}}}},"Analytics_CreditsPerDailyActiveUser_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_CreditsPerMonthlyActiveUser_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_WalletsTotal_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsDaily_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsMonthly_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsByCountry_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsByDevice_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsByBrowser_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsByOS_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsByType_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_WalletsTxnSentTotal_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsTxnSentDaily_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsTxnSentMonthly_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WalletsByOrigin_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_ConnectionsByOrigin_Response":{"type":"object","properties":{"walletStats":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_MarketTxnEventTotal_Response":{"type":"object","properties":{"marketStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketTxnEventDaily_Response":{"type":"object","properties":{"marketStats":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_MarketTxnEventMonthly_Response":{"type":"object","properties":{"marketStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketWalletsTotal_Response":{"type":"object","properties":{"marketStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketWalletsDaily_Response":{"type":"object","properties":{"marketStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketWalletsMonthly_Response":{"type":"object","properties":{"marketStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalWalletTxnConversionRate_Response":{"type":"object","properties":{"marketStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyWalletTxnConversionRate_Response":{"type":"object","properties":{"marketStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyWalletTxnConversionRate_Response":{"type":"object","properties":{"marketStats":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyNewWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyNewWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalNewWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageDAU_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_RollingStickiness_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageStickiness_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D1RetentionByCohort_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D3RetentionByCohort_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D7RetentionByCohort_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D14RetentionByCohort_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_D28RetentionByCohort_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD1Retention_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD3Retention_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD7Retention_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD14Retention_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageD28Retention_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyActiveWalletsBySegment_Response":{"type":"object","properties":{"data":{"type":"object","description":"map","additionalProperties":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_MonthlyTransactingWalletsBySegment_Response":{"type":"object","properties":{"data":{"type":"object","description":"map","additionalProperties":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_WeeklyActiveWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalViews_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyViews_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_ViewsByCountry_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_ViewsByDevice_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_ViewsByOS_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_DailyUniqueVisitors_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_MonthlyUniqueVisitors_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_ActiveSessions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_UserEvents_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalProjects_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalProjectsCreated_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalActiveProjects_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalDevelopers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemActiveDevelopers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemDailyActiveWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyActiveWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemDailyNewProjects_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyNewProjects_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalContracts_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyContracts_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTopProjectsByActiveWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTopProjectsByNewWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemWalletsCreated_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyActiveEcoWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemDailyNewWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyNewWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTopProjectsByDeveloperActivity_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTopProjectsByNewDevelopers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTotalMarketplaces_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyMarketplaces_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemActiveMarketplaces_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemWalletsByCountry_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByDevice_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByOS_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByBrowser_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByType_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]パーセンテージ付きチャート","items":{"$ref":"#/components/schemas/ChartWithPercentage"}}}},"Analytics_EcosystemWalletsByLoginMethod_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalTransactingUsers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyTransactingUsers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTotalTransactionVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemMonthlyTransactionVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_EcosystemTopProjectsByTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTopProjectsByTransactingUsers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_EcosystemTopProjectsByTransactionVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_TotalProjectTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyProjectTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyProjectTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectTransactionsByChain_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectTransactionsByCollection_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectTransactionsByToken_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyProjectTransactionsByCollection_Response":{"type":"object","properties":{"data":{"type":"object","description":"map","additionalProperties":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_TotalProjectTransactionVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyProjectVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyProjectVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectVolumeByChain_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectVolumeByCollection_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalProjectVolumeByToken_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyProjectVolumeByCollection_Response":{"type":"object","properties":{"data":{"type":"object","description":"map","additionalProperties":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}}},"Analytics_TransactionVolumePerUser_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TransactionVolumePerTransactingUser_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalTransactingUsers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyUniqueTransactingUsers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyUniqueTransactingUsers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TransactingUserConversion_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyTransactingUserConversion_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyTransactingUserConversion_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_RepeatingTransactingUserPercentage_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_WeekOnWeekTransactingUserRetention_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthOnMonthTransactingUserRetention_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AvgBalanceOfSequenceWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AvgBalanceOfTransactingSequenceWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyMarketplaceTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyMarketplaceTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsTransacted_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsPurchased_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsSold_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsListed_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceItemsOffered_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceTransactingUsers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyMarketplaceVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyMarketplaceVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageMarketplaceTransactionPrice_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalMarketplaceTradedCollections_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TopMarketplaceBuyers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TopMarketplaceSellers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MarketplaceCollectionTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_TotalShopTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyShopTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyShopTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalShopItemsPurchased_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalShopPurchasers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TotalShopVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_DailyShopVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_MonthlyShopVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_AverageShopPurchasePrice_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TopShopBuyers_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_ShopCollectionTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]マルチバリューチャート","items":{"$ref":"#/components/schemas/MultiValueChart"}}}},"Analytics_TotalMarketplaceItemsSoldByToken_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]トークントランザクションデータ","items":{"$ref":"#/components/schemas/TokenTransactionData"}}}},"Analytics_TotalShopItemsSoldByToken_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]トークントランザクションデータ","items":{"$ref":"#/components/schemas/TokenTransactionData"}}}},"Analytics_TrailsTotalTransactionVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTotalTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTotalUniqueTransactingWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsAverageTransactionDuration_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsPaymentCompletionPercentage_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTransactionsByDomain_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTransactionsByAmount_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyTransactionVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyTransactingWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyActiveWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyAverageTransactionDuration_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsDailyPaymentCompletionPercentage_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyTransactionVolume_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyTransactingWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyActiveWallets_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyAverageTransactionDuration_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsMonthlyPaymentCompletionPercentage_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]チャート","items":{"$ref":"#/components/schemas/Chart"}}}},"Analytics_TrailsTransactionsByMode_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]モード別トレイルズトランザクション","items":{"$ref":"#/components/schemas/TrailsTransactionByMode"}}}},"Analytics_TrailsTransactionsByRoute_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]ルート別トレイルズトランザクション","items":{"$ref":"#/components/schemas/TrailsTransactionByRoute"}}}},"Analytics_TrailsTransactionsByProvider_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]プロバイダー別トレイルズトランザクション","items":{"$ref":"#/components/schemas/TrailsTransactionByProvider"}}}},"Analytics_TrailsTransactionsByCountry_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]国別トレイルズトランザクション","items":{"$ref":"#/components/schemas/TrailsTransactionByCountry"}}}},"Analytics_TrailsTopTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]トレイルズトランザクション詳細","items":{"$ref":"#/components/schemas/TrailsTransactionDetail"}}}},"Analytics_ExportTrailsTransactions_Response":{"type":"object","properties":{"data":{"type":"配列","description":"[]トレイルズトランザクション詳細","items":{"$ref":"#/components/schemas/TrailsTransactionDetail"}}}}}},"paths":{"/rpc/Analytics/TotalCompute":{"post":{"operationId":"アナリティクス-総計算量","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalCompute_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalCompute_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ComputeByService":{"post":{"operationId":"アナリティクス-サービス別計算量","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ComputeByService_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ComputeByService_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyComputeByType":{"post":{"operationId":"アナリティクス-タイプ別日次計算量","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyComputeByType_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyComputeByType_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyComputeByService":{"post":{"operationId":"アナリティクス-サービス別日次計算量","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyComputeByService_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyComputeByService_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/GetOrderbookCollections":{"post":{"operationId":"アナリティクス-オーダーブックコレクション取得","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_GetOrderbookCollections_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_GetOrderbookCollections_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/CreditsPerDailyActiveUser":{"post":{"operationId":"アナリティクス-日次アクティブユーザーあたりのクレジット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_CreditsPerDailyActiveUser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_CreditsPerDailyActiveUser_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/CreditsPerMonthlyActiveUser":{"post":{"operationId":"アナリティクス-月次アクティブユーザーあたりのクレジット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_CreditsPerMonthlyActiveUser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_CreditsPerMonthlyActiveUser_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsTotal":{"post":{"operationId":"アナリティクス-ウォレット総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTotal_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTotal_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsDaily":{"post":{"operationId":"アナリティクス-ウォレット日次推移","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsDaily_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsDaily_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsMonthly":{"post":{"operationId":"アナリティクス-ウォレット月次推移","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsMonthly_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsMonthly_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByCountry":{"post":{"operationId":"アナリティクス-国別ウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByCountry_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByCountry_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByDevice":{"post":{"operationId":"アナリティクス-デバイス別ウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByDevice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByDevice_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByBrowser":{"post":{"operationId":"アナリティクス-ブラウザ別ウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByBrowser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByBrowser_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByOS":{"post":{"operationId":"アナリティクス-OS別ウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByOS_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByOS_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByType":{"post":{"operationId":"アナリティクス-タイプ別ウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByType_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByType_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsTxnSentTotal":{"post":{"operationId":"アナリティクス-ウォレット送信トランザクション総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentTotal_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentTotal_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsTxnSentDaily":{"post":{"operationId":"アナリティクス-ウォレット送信トランザクション日次","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentDaily_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentDaily_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsTxnSentMonthly":{"post":{"operationId":"アナリティクス-ウォレット送信トランザクション月次","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentMonthly_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsTxnSentMonthly_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WalletsByOrigin":{"post":{"operationId":"アナリティクス-オリジン別ウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByOrigin_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WalletsByOrigin_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ConnectionsByOrigin":{"post":{"operationId":"アナリティクス-オリジン別接続数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ConnectionsByOrigin_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ConnectionsByOrigin_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketTxnEventTotal":{"post":{"operationId":"アナリティクス-マーケット取引イベント総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventTotal_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventTotal_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketTxnEventDaily":{"post":{"operationId":"アナリティクス-マーケット取引イベント日次","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventDaily_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventDaily_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketTxnEventMonthly":{"post":{"operationId":"アナリティクス-マーケット取引イベント月次","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventMonthly_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketTxnEventMonthly_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketWalletsTotal":{"post":{"operationId":"アナリティクス-マーケットウォレット総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsTotal_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsTotal_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketWalletsDaily":{"post":{"operationId":"アナリティクス-マーケットウォレット日次","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsDaily_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsDaily_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketWalletsMonthly":{"post":{"operationId":"アナリティクス-マーケットウォレット月次","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsMonthly_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketWalletsMonthly_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalWalletTxnConversionRate":{"post":{"operationId":"アナリティクス-ウォレット取引コンバージョン率総計","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalWalletTxnConversionRate_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalWalletTxnConversionRate_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyWalletTxnConversionRate":{"post":{"operationId":"アナリティクス-ウォレット取引日次コンバージョン率","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyWalletTxnConversionRate_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyWalletTxnConversionRate_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyWalletTxnConversionRate":{"post":{"operationId":"アナリティクス-ウォレット取引月次コンバージョン率","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyWalletTxnConversionRate_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyWalletTxnConversionRate_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyNewWallets":{"post":{"operationId":"アナリティクス-日次新規ウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyNewWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyNewWallets":{"post":{"operationId":"アナリティクス-月次新規ウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyNewWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalNewWallets":{"post":{"operationId":"アナリティクス-新規ウォレット総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalNewWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageDAU":{"post":{"operationId":"アナリティクス-平均DAU","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageDAU_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageDAU_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/RollingStickiness":{"post":{"operationId":"アナリティクス-ローリングスティッキネス","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_RollingStickiness_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_RollingStickiness_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageStickiness":{"post":{"operationId":"アナリティクス-平均スティッキネス","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageStickiness_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageStickiness_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D1RetentionByCohort":{"post":{"operationId":"アナリティクス-コホート別D1リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D1RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D1RetentionByCohort_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D3RetentionByCohort":{"post":{"operationId":"アナリティクス-コホート別D3リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D3RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D3RetentionByCohort_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D7RetentionByCohort":{"post":{"operationId":"アナリティクス-コホート別D7リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D7RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D7RetentionByCohort_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D14RetentionByCohort":{"post":{"operationId":"アナリティクス-コホート別D14リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D14RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D14RetentionByCohort_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/D28RetentionByCohort":{"post":{"operationId":"アナリティクス-コホート別D28リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D28RetentionByCohort_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_D28RetentionByCohort_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD1Retention":{"post":{"operationId":"アナリティクス-平均D1リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD1Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD1Retention_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD3Retention":{"post":{"operationId":"アナリティクス-平均D3リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD3Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD3Retention_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD7Retention":{"post":{"operationId":"アナリティクス-平均D7リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD7Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD7Retention_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD14Retention":{"post":{"operationId":"アナリティクス-平均D14リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD14Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD14Retention_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageD28Retention":{"post":{"operationId":"アナリティクス-平均D28リテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD28Retention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageD28Retention_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyActiveWalletsBySegment":{"post":{"operationId":"アナリティクス-セグメント別月次アクティブウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyActiveWalletsBySegment_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyActiveWalletsBySegment_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyTransactingWalletsBySegment":{"post":{"operationId":"アナリティクス-セグメント別月次取引ウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyTransactingWalletsBySegment_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyTransactingWalletsBySegment_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WeeklyActiveWallets":{"post":{"operationId":"アナリティクス-週次アクティブウォレット","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WeeklyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WeeklyActiveWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalViews":{"post":{"operationId":"アナリティクス-総ビュー数","tags":["アナリティクス"],"summary":"ビューアナリティクス","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalViews_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalViews_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyViews":{"post":{"operationId":"アナリティクス-日次ビュー数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyViews_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyViews_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ViewsByCountry":{"post":{"operationId":"アナリティクス-国別ビュー数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByCountry_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByCountry_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ViewsByDevice":{"post":{"operationId":"アナリティクス-デバイス別ビュー数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByDevice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByDevice_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ViewsByOS":{"post":{"operationId":"アナリティクス-OS別ビュー数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByOS_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ViewsByOS_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyUniqueVisitors":{"post":{"operationId":"アナリティクス-日次ユニークビジター数","tags":["アナリティクス"],"summary":"ビジターアナリティクス","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyUniqueVisitors_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyUniqueVisitors_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyUniqueVisitors":{"post":{"operationId":"アナリティクス-月次ユニークビジター数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyUniqueVisitors_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyUniqueVisitors_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ActiveSessions":{"post":{"operationId":"アナリティクス-アクティブセッション数","tags":["アナリティクス"],"summary":"リアルタイムアナリティクス","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ActiveSessions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ActiveSessions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/UserEvents":{"post":{"operationId":"アナリティクス-ユーザーイベント","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_UserEvents_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_UserEvents_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalWallets":{"post":{"operationId":"アナリティクス-エコシステム総ウォレット数","tags":["アナリティクス"],"summary":"エコシステムアナリティクス","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalProjects":{"post":{"operationId":"アナリティクス-エコシステム総プロジェクト数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalProjects_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalProjects_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalProjectsCreated":{"post":{"operationId":"アナリティクス-エコシステム作成済みプロジェクト総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalProjectsCreated_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalProjectsCreated_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalActiveProjects":{"post":{"operationId":"アナリティクス-エコシステムアクティブプロジェクト総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalActiveProjects_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalActiveProjects_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalDevelopers":{"post":{"operationId":"アナリティクス-エコシステム開発者総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalDevelopers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalDevelopers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemActiveDevelopers":{"post":{"operationId":"アナリティクス - エコシステム内アクティブ開発者数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemActiveDevelopers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemActiveDevelopers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemDailyActiveWallets":{"post":{"operationId":"アナリティクス - エコシステム内日次アクティブウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyActiveWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyActiveWallets":{"post":{"operationId":"アナリティクス - エコシステム内月次アクティブウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyActiveWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemDailyNewProjects":{"post":{"operationId":"アナリティクス - エコシステム内日次新規プロジェクト数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyNewProjects_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyNewProjects_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyNewProjects":{"post":{"operationId":"アナリティクス - エコシステム内月次新規プロジェクト数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyNewProjects_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyNewProjects_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalContracts":{"post":{"operationId":"アナリティクス - エコシステム内累計コントラクト数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalContracts_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalContracts_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyContracts":{"post":{"operationId":"アナリティクス - エコシステム内月次コントラクト数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyContracts_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyContracts_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByActiveWallets":{"post":{"operationId":"アナリティクス - アクティブウォレット数上位プロジェクト","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByActiveWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByNewWallets":{"post":{"operationId":"アナリティクス - 新規ウォレット数上位プロジェクト","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByNewWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsCreated":{"post":{"operationId":"アナリティクス - エコシステム内作成ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsCreated_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsCreated_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyActiveEcoWallets":{"post":{"operationId":"アナリティクス - エコシステム内月次アクティブエコウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyActiveEcoWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyActiveEcoWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemDailyNewWallets":{"post":{"operationId":"アナリティクス - エコシステム内日次新規ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemDailyNewWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyNewWallets":{"post":{"operationId":"アナリティクス - エコシステム内月次新規ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyNewWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyNewWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByDeveloperActivity":{"post":{"operationId":"アナリティクス - 開発者活動上位プロジェクト","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByDeveloperActivity_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByDeveloperActivity_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByNewDevelopers":{"post":{"operationId":"アナリティクス - 新規開発者数上位プロジェクト","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByNewDevelopers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByNewDevelopers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalMarketplaces":{"post":{"operationId":"アナリティクス - エコシステム内累計マーケットプレイス数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalMarketplaces_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalMarketplaces_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyMarketplaces":{"post":{"operationId":"アナリティクス - エコシステム内月次マーケットプレイス数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyMarketplaces_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyMarketplaces_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemActiveMarketplaces":{"post":{"operationId":"アナリティクス - エコシステム内アクティブマーケットプレイス数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemActiveMarketplaces_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemActiveMarketplaces_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByCountry":{"post":{"operationId":"アナリティクス - 国別ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByCountry_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByCountry_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByDevice":{"post":{"operationId":"アナリティクス - デバイス別ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByDevice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByDevice_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByOS":{"post":{"operationId":"アナリティクス - OS別ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByOS_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByOS_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByBrowser":{"post":{"operationId":"アナリティクス - ブラウザ別ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByBrowser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByBrowser_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByType":{"post":{"operationId":"アナリティクス - タイプ別ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByType_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByType_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemWalletsByLoginMethod":{"post":{"operationId":"アナリティクス - ログイン方法別ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByLoginMethod_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemWalletsByLoginMethod_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalTransactions":{"post":{"operationId":"アナリティクス - エコシステム内累計トランザクション数","tags":["アナリティクス"],"summary":"エコシステム トランザクション分析","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyTransactions":{"post":{"operationId":"アナリティクス - エコシステム内月次トランザクション数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalTransactingUsers":{"post":{"operationId":"アナリティクス - エコシステム内累計取引ユーザー数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactingUsers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyTransactingUsers":{"post":{"operationId":"アナリティクス - エコシステム内月次取引ユーザー数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactingUsers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTotalTransactionVolume":{"post":{"operationId":"アナリティクス - エコシステム内累計取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTotalTransactionVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemMonthlyTransactionVolume":{"post":{"operationId":"アナリティクス - エコシステム内月次取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemMonthlyTransactionVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByTransactions":{"post":{"operationId":"アナリティクス - トランザクション数上位プロジェクト","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByTransactingUsers":{"post":{"operationId":"アナリティクス - 取引ユーザー数上位プロジェクト","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactingUsers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/EcosystemTopProjectsByTransactionVolume":{"post":{"operationId":"アナリティクス - 取引ボリューム上位プロジェクト","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_EcosystemTopProjectsByTransactionVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactions":{"post":{"operationId":"アナリティクス - プロジェクト累計トランザクション数","tags":["アナリティクス"],"summary":"トランザクション分析","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyProjectTransactions":{"post":{"operationId":"アナリティクス - プロジェクト日次トランザクション数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyProjectTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyProjectTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyProjectTransactions":{"post":{"operationId":"アナリティクス - プロジェクト月次トランザクション数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactionsByChain":{"post":{"operationId":"アナリティクス - チェーン別プロジェクト累計トランザクション数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByChain_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByChain_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactionsByCollection":{"post":{"operationId":"アナリティクス - コレクション別プロジェクト累計トランザクション数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByCollection_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByCollection_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactionsByToken":{"post":{"operationId":"アナリティクス - トークン別プロジェクト累計トランザクション数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByToken_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionsByToken_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyProjectTransactionsByCollection":{"post":{"operationId":"アナリティクス - コレクション別プロジェクト月次トランザクション数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectTransactionsByCollection_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectTransactionsByCollection_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectTransactionVolume":{"post":{"operationId":"アナリティクス - プロジェクト累計取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectTransactionVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyProjectVolume":{"post":{"operationId":"アナリティクス - プロジェクト日次取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyProjectVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyProjectVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyProjectVolume":{"post":{"operationId":"アナリティクス - プロジェクト月次取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectVolumeByChain":{"post":{"operationId":"アナリティクス - チェーン別プロジェクト累計取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByChain_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByChain_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectVolumeByCollection":{"post":{"operationId":"アナリティクス - コレクション別プロジェクト累計取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByCollection_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByCollection_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalProjectVolumeByToken":{"post":{"operationId":"アナリティクス - トークン別プロジェクト累計取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByToken_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalProjectVolumeByToken_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyProjectVolumeByCollection":{"post":{"operationId":"アナリティクス - コレクション別プロジェクト月次取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectVolumeByCollection_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyProjectVolumeByCollection_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TransactionVolumePerUser":{"post":{"operationId":"アナリティクス - ユーザーごとの取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactionVolumePerUser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactionVolumePerUser_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TransactionVolumePerTransactingUser":{"post":{"operationId":"アナリティクス - 取引ユーザーごとの取引ボリューム","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactionVolumePerTransactingUser_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactionVolumePerTransactingUser_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalTransactingUsers":{"post":{"operationId":"アナリティクス - 累計取引ユーザー数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalTransactingUsers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyUniqueTransactingUsers":{"post":{"operationId":"アナリティクス - 日次ユニーク取引ユーザー数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyUniqueTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyUniqueTransactingUsers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyUniqueTransactingUsers":{"post":{"operationId":"アナリティクス - 月次ユニーク取引ユーザー数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyUniqueTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyUniqueTransactingUsers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TransactingUserConversion":{"post":{"operationId":"アナリティクス - 取引ユーザー転換率","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactingUserConversion_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TransactingUserConversion_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyTransactingUserConversion":{"post":{"operationId":"アナリティクス - 日次取引ユーザー転換率","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyTransactingUserConversion_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyTransactingUserConversion_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyTransactingUserConversion":{"post":{"operationId":"アナリティクス - 月次取引ユーザー転換率","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyTransactingUserConversion_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyTransactingUserConversion_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/RepeatingTransactingUserPercentage":{"post":{"operationId":"アナリティクス - リピート取引ユーザー割合","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_RepeatingTransactingUserPercentage_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_RepeatingTransactingUserPercentage_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/WeekOnWeekTransactingUserRetention":{"post":{"operationId":"アナリティクス - 週ごとの取引ユーザーリテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WeekOnWeekTransactingUserRetention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_WeekOnWeekTransactingUserRetention_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthOnMonthTransactingUserRetention":{"post":{"operationId":"アナリティクス - 月ごとの取引ユーザーリテンション","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthOnMonthTransactingUserRetention_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthOnMonthTransactingUserRetention_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AvgBalanceOfSequenceWallets":{"post":{"operationId":"アナリティクス - Sequenceウォレットの平均残高","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AvgBalanceOfSequenceWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AvgBalanceOfSequenceWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AvgBalanceOfTransactingSequenceWallets":{"post":{"operationId":"アナリティクス - 取引中のSequenceウォレットの平均残高","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AvgBalanceOfTransactingSequenceWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AvgBalanceOfTransactingSequenceWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceTransactions":{"post":{"operationId":"アナリティクス - マーケットプレイス全体の取引数","tags":["アナリティクス"],"summary":"マーケットプレイスアナリティクス","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyMarketplaceTransactions":{"post":{"operationId":"アナリティクス - マーケットプレイスの1日あたり取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyMarketplaceTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyMarketplaceTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyMarketplaceTransactions":{"post":{"operationId":"アナリティクス - マーケットプレイスの月間取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyMarketplaceTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyMarketplaceTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsTransacted":{"post":{"operationId":"アナリティクス - マーケットプレイスで取引されたアイテム総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsTransacted_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsTransacted_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsPurchased":{"post":{"operationId":"アナリティクス - マーケットプレイスで購入されたアイテム総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsPurchased_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsPurchased_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsSold":{"post":{"operationId":"アナリティクス - マーケットプレイスで販売されたアイテム総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsSold_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsSold_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsListed":{"post":{"operationId":"アナリティクス - マーケットプレイスで出品されたアイテム総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsListed_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsListed_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsOffered":{"post":{"operationId":"アナリティクス - マーケットプレイスでオファーされたアイテム総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsOffered_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsOffered_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceTransactingUsers":{"post":{"operationId":"アナリティクス - マーケットプレイスで取引したユーザー総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTransactingUsers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTransactingUsers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceVolume":{"post":{"operationId":"アナリティクス - マーケットプレイスの総取引額","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyMarketplaceVolume":{"post":{"operationId":"アナリティクス - マーケットプレイスの1日あたり取引額","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyMarketplaceVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyMarketplaceVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyMarketplaceVolume":{"post":{"operationId":"アナリティクス - マーケットプレイスの月間取引額","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyMarketplaceVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyMarketplaceVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageMarketplaceTransactionPrice":{"post":{"operationId":"アナリティクス - マーケットプレイスの平均取引価格","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageMarketplaceTransactionPrice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageMarketplaceTransactionPrice_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceTradedCollections":{"post":{"operationId":"アナリティクス - マーケットプレイスで取引されたコレクション総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTradedCollections_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceTradedCollections_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TopMarketplaceBuyers":{"post":{"operationId":"アナリティクス - マーケットプレイスのトップバイヤー","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopMarketplaceBuyers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopMarketplaceBuyers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TopMarketplaceSellers":{"post":{"operationId":"アナリティクス - マーケットプレイスのトップセラー","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopMarketplaceSellers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopMarketplaceSellers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MarketplaceCollectionTransactions":{"post":{"operationId":"アナリティクス - マーケットプレイスコレクションごとの取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketplaceCollectionTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MarketplaceCollectionTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopTransactions":{"post":{"operationId":"アナリティクス - ショップ全体の取引数","tags":["アナリティクス"],"summary":"ショップアナリティクス","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyShopTransactions":{"post":{"operationId":"アナリティクス - ショップの1日あたり取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyShopTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyShopTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyShopTransactions":{"post":{"operationId":"アナリティクス - ショップの月間取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyShopTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyShopTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopItemsPurchased":{"post":{"operationId":"アナリティクス - ショップで購入されたアイテム総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopItemsPurchased_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopItemsPurchased_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopPurchasers":{"post":{"operationId":"アナリティクス - ショップで購入したユーザー総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopPurchasers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopPurchasers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopVolume":{"post":{"operationId":"アナリティクス - ショップの総取引額","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/DailyShopVolume":{"post":{"operationId":"アナリティクス - ショップの1日あたり取引額","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyShopVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_DailyShopVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/MonthlyShopVolume":{"post":{"operationId":"アナリティクス - ショップの月間取引額","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyShopVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_MonthlyShopVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/AverageShopPurchasePrice":{"post":{"operationId":"アナリティクス - ショップの平均購入価格","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageShopPurchasePrice_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_AverageShopPurchasePrice_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TopShopBuyers":{"post":{"operationId":"アナリティクス - ショップのトップバイヤー","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopShopBuyers_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TopShopBuyers_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ShopCollectionTransactions":{"post":{"operationId":"アナリティクス - ショップコレクションごとの取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ShopCollectionTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ShopCollectionTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalMarketplaceItemsSoldByToken":{"post":{"operationId":"アナリティクス - トークン別マーケットプレイス販売アイテム総数","tags":["アナリティクス"],"summary":"マーケットプレイストークンレベルアナリティクス","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsSoldByToken_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalMarketplaceItemsSoldByToken_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TotalShopItemsSoldByToken":{"post":{"operationId":"アナリティクス - トークン別ショップ販売アイテム総数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopItemsSoldByToken_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TotalShopItemsSoldByToken_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTotalTransactionVolume":{"post":{"operationId":"アナリティクス - Trails総取引額","tags":["アナリティクス"],"summary":"Trailsアナリティクス - ビッグナンバー","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalTransactionVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTotalTransactions":{"post":{"operationId":"アナリティクス - Trails総取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTotalUniqueTransactingWallets":{"post":{"operationId":"アナリティクス - Trailsで取引したユニークウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalUniqueTransactingWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTotalUniqueTransactingWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsAverageTransactionDuration":{"post":{"operationId":"アナリティクス - Trails平均取引時間","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsAverageTransactionDuration_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsAverageTransactionDuration_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsPaymentCompletionPercentage":{"post":{"operationId":"アナリティクス - Trails決済完了率","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsPaymentCompletionPercentage_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsPaymentCompletionPercentage_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByDomain":{"post":{"operationId":"アナリティクス - Trailsドメイン別取引数","tags":["アナリティクス"],"summary":"Trailsアナリティクス - カテゴリチャート","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByDomain_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByDomain_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByAmount":{"post":{"operationId":"アナリティクス - Trails金額別取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByAmount_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByAmount_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyTransactionVolume":{"post":{"operationId":"アナリティクス - Trails日別取引額","tags":["アナリティクス"],"summary":"Trailsアナリティクス - 日次タイムシリーズ","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactionVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyTransactions":{"post":{"operationId":"アナリティクス - Trails日別取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyTransactingWallets":{"post":{"operationId":"アナリティクス - Trails日別取引ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactingWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyTransactingWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyActiveWallets":{"post":{"operationId":"アナリティクス - Trails日別アクティブウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyActiveWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyAverageTransactionDuration":{"post":{"operationId":"アナリティクス - Trails日別平均取引時間","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyAverageTransactionDuration_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyAverageTransactionDuration_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsDailyPaymentCompletionPercentage":{"post":{"operationId":"アナリティクス - Trails日別決済完了率","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyPaymentCompletionPercentage_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsDailyPaymentCompletionPercentage_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyTransactionVolume":{"post":{"operationId":"アナリティクス - Trails月別取引額","tags":["アナリティクス"],"summary":"Trailsアナリティクス - 月次タイムシリーズ","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactionVolume_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactionVolume_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyTransactions":{"post":{"operationId":"アナリティクス - Trails月別取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyTransactingWallets":{"post":{"operationId":"アナリティクス - Trails月別取引ウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactingWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyTransactingWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyActiveWallets":{"post":{"operationId":"アナリティクス - Trails月別アクティブウォレット数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyActiveWallets_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyActiveWallets_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyAverageTransactionDuration":{"post":{"operationId":"アナリティクス - Trails月別平均取引時間","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyAverageTransactionDuration_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyAverageTransactionDuration_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsMonthlyPaymentCompletionPercentage":{"post":{"operationId":"アナリティクス - Trails月別決済完了率","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyPaymentCompletionPercentage_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsMonthlyPaymentCompletionPercentage_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByMode":{"post":{"operationId":"アナリティクス - Trailsモード別取引数","tags":["アナリティクス"],"summary":"Trailsアナリティクス - テーブル","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByMode_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByMode_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByRoute":{"post":{"operationId":"アナリティクス - Trailsルート別取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByRoute_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByRoute_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByProvider":{"post":{"operationId":"アナリティクス - Trailsプロバイダー別取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByProvider_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByProvider_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTransactionsByCountry":{"post":{"operationId":"アナリティクス - Trails国別取引数","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByCountry_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTransactionsByCountry_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/TrailsTopTransactions":{"post":{"operationId":"アナリティクス - Trails上位取引","tags":["アナリティクス"],"summary":"","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTopTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_TrailsTopTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}},"/rpc/Analytics/ExportTrailsTransactions":{"post":{"operationId":"アナリティクス - Trails取引のエクスポート","tags":["アナリティクス"],"summary":"Trailsアナリティクス - エクスポート(CSVエクスポート用に全データを制限なしで返します)","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ExportTrailsTransactions_Request"}}}},"responses":{"200":{"description":"OK","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Analytics_ExportTrailsTransactions_Response"}}}},"4XX":{"description":"クライアントエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcEndpoint"},{"$ref":"#/components/schemas/ErrorWebrpcRequestFailed"},{"$ref":"#/components/schemas/ErrorWebrpcBadRoute"},{"$ref":"#/components/schemas/ErrorWebrpcBadMethod"},{"$ref":"#/components/schemas/ErrorWebrpcBadRequest"},{"$ref":"#/components/schemas/ErrorWebrpcClientAborted"},{"$ref":"#/components/schemas/ErrorWebrpcStreamLost"}]}}}},"5XX":{"description":"サーバーエラー","content":{"application/json":{"schema":{"oneOf":[{"$ref":"#/components/schemas/ErrorWebrpcBadResponse"},{"$ref":"#/components/schemas/ErrorWebrpcServerPanic"},{"$ref":"#/components/schemas/ErrorWebrpcInternalError"}]}}}}}}}},"security":[{"ApiKeyAuth":[]}]} \ No newline at end of file