Triton One · Schema

Triton One RPC Endpoint

An RPC endpoint provisioned under a subscription.

SolanaRPCBlockchainWeb3StreamingYellowstoneValidatorgRPCPythnetSuiMonad

Properties

Name Type Description
uuid string
name string
slug string
rate_tier string
is_active boolean
values array Endpoint URL values (e.g. rpcpool subdomains).
allowed_origins array
View JSON Schema on GitHub

JSON Schema

triton-one-endpoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/triton-one/main/json-schema/triton-one-endpoint-schema.json",
  "title": "Triton One RPC Endpoint",
  "description": "An RPC endpoint provisioned under a subscription.",
  "type": "object",
  "required": ["uuid", "name", "rate_tier"],
  "properties": {
    "uuid": { "type": "string", "format": "uuid" },
    "name": { "type": "string" },
    "slug": { "type": "string" },
    "rate_tier": {
      "type": "string",
      "enum": ["free", "tier1", "tier2", "tier3", "dedi"]
    },
    "is_active": { "type": "boolean" },
    "values": {
      "type": "array",
      "items": { "type": "string" },
      "description": "Endpoint URL values (e.g. rpcpool subdomains)."
    },
    "allowed_origins": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "value": { "type": "string" },
          "is_active": { "type": "boolean" }
        }
      }
    }
  }
}