| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382 |
- // Code generated by tools/openapigen. DO NOT EDIT.
- export const SCHEMAS: Record<string, unknown> = {
- "AllSetting": {
- "description": "AllSetting contains all configuration settings for the 3x-ui panel including web server, Telegram bot, and subscription settings.",
- "properties": {
- "datepicker": {
- "description": "Date picker format",
- "type": "string"
- },
- "expireDiff": {
- "description": "Expiration warning threshold in days",
- "minimum": 0,
- "type": "integer"
- },
- "externalTrafficInformEnable": {
- "description": "Enable external traffic reporting",
- "type": "boolean"
- },
- "externalTrafficInformURI": {
- "description": "URI for external traffic reporting",
- "type": "string"
- },
- "ldapAutoCreate": {
- "type": "boolean"
- },
- "ldapAutoDelete": {
- "type": "boolean"
- },
- "ldapBaseDN": {
- "type": "string"
- },
- "ldapBindDN": {
- "type": "string"
- },
- "ldapDefaultExpiryDays": {
- "minimum": 0,
- "type": "integer"
- },
- "ldapDefaultLimitIP": {
- "minimum": 0,
- "type": "integer"
- },
- "ldapDefaultTotalGB": {
- "minimum": 0,
- "type": "integer"
- },
- "ldapEnable": {
- "description": "LDAP settings",
- "type": "boolean"
- },
- "ldapFlagField": {
- "description": "Generic flag configuration",
- "type": "string"
- },
- "ldapHost": {
- "type": "string"
- },
- "ldapInboundTags": {
- "type": "string"
- },
- "ldapInsecureSkipVerify": {
- "type": "boolean"
- },
- "ldapInvertFlag": {
- "type": "boolean"
- },
- "ldapPassword": {
- "type": "string"
- },
- "ldapPort": {
- "maximum": 65535,
- "minimum": 0,
- "type": "integer"
- },
- "ldapSyncCron": {
- "type": "string"
- },
- "ldapTruthyValues": {
- "type": "string"
- },
- "ldapUseTLS": {
- "type": "boolean"
- },
- "ldapUserAttr": {
- "description": "e.g., mail or uid",
- "type": "string"
- },
- "ldapUserFilter": {
- "type": "string"
- },
- "ldapVlessField": {
- "type": "string"
- },
- "pageSize": {
- "description": "UI settings\nNumber of items per page in lists (0 disables pagination)",
- "maximum": 1000,
- "minimum": 0,
- "type": "integer"
- },
- "panelOutbound": {
- "description": "Xray outbound tag for the panel's own outbound HTTP (update checks/downloads, Telegram, geo updates, outbound-subscription fetches)",
- "type": "string"
- },
- "remarkTemplate": {
- "description": "Subscription remark template ({{VAR}} tokens) rendered per client",
- "type": "string"
- },
- "restartXrayOnClientDisable": {
- "description": "Restart Xray when clients are auto-disabled by expiry/traffic limit",
- "type": "boolean"
- },
- "sessionMaxAge": {
- "description": "Session maximum age in minutes (cap at one year)",
- "maximum": 525600,
- "minimum": 1,
- "type": "integer"
- },
- "smtpCpu": {
- "description": "CPU threshold for email notifications",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "smtpEnable": {
- "description": "Email (SMTP) notification settings\nEnable email notifications",
- "type": "boolean"
- },
- "smtpEnabledEvents": {
- "description": "Comma-separated event types to send via email",
- "type": "string"
- },
- "smtpEncryptionType": {
- "description": "SMTP encryption: none, starttls, tls",
- "type": "string"
- },
- "smtpHost": {
- "description": "SMTP server host",
- "type": "string"
- },
- "smtpMemory": {
- "description": "Memory threshold for email notifications",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "smtpPassword": {
- "description": "SMTP password",
- "type": "string"
- },
- "smtpPort": {
- "description": "SMTP server port",
- "maximum": 65535,
- "minimum": 1,
- "type": "integer"
- },
- "smtpTo": {
- "description": "Comma-separated recipient emails",
- "type": "string"
- },
- "smtpUsername": {
- "description": "SMTP username",
- "type": "string"
- },
- "subAnnounce": {
- "description": "Subscription announce",
- "type": "string"
- },
- "subCertFile": {
- "description": "SSL certificate file for subscription server",
- "type": "string"
- },
- "subClashEnable": {
- "description": "Enable Clash/Mihomo subscription endpoint",
- "type": "boolean"
- },
- "subClashEnableRouting": {
- "description": "Enable global routing rules for Clash/Mihomo",
- "type": "boolean"
- },
- "subClashPath": {
- "description": "Path for Clash/Mihomo subscription endpoint",
- "type": "string"
- },
- "subClashRules": {
- "description": "Clash/Mihomo global routing rules",
- "type": "string"
- },
- "subClashURI": {
- "description": "Clash/Mihomo subscription server URI",
- "type": "string"
- },
- "subDomain": {
- "description": "Domain for subscription server validation",
- "type": "string"
- },
- "subEnable": {
- "description": "Subscription server settings\nEnable subscription server",
- "type": "boolean"
- },
- "subEnableRouting": {
- "description": "Enable routing for subscription",
- "type": "boolean"
- },
- "subEncrypt": {
- "description": "Encrypt subscription responses",
- "type": "boolean"
- },
- "subHideSettings": {
- "description": "Hide server settings in happ subscription (Only for Happ)",
- "type": "boolean"
- },
- "subIncyEnableRouting": {
- "description": "Enable routing injection for the Incy client",
- "type": "boolean"
- },
- "subIncyRoutingRules": {
- "description": "Incy routing deep-link injected into the subscription body (Only for Incy)",
- "type": "string"
- },
- "subJsonEnable": {
- "description": "Enable JSON subscription endpoint",
- "type": "boolean"
- },
- "subJsonFinalMask": {
- "description": "JSON subscription global finalmask (tcp/udp masks + quicParams)",
- "type": "string"
- },
- "subJsonMux": {
- "description": "JSON subscription mux configuration",
- "type": "string"
- },
- "subJsonPath": {
- "description": "Path for JSON subscription endpoint",
- "type": "string"
- },
- "subJsonRules": {
- "type": "string"
- },
- "subJsonURI": {
- "description": "JSON subscription server URI",
- "type": "string"
- },
- "subKeyFile": {
- "description": "SSL private key file for subscription server",
- "type": "string"
- },
- "subListen": {
- "description": "Subscription server listen IP",
- "type": "string"
- },
- "subPath": {
- "description": "Base path for subscription URLs",
- "type": "string"
- },
- "subPort": {
- "description": "Subscription server port",
- "maximum": 65535,
- "minimum": 1,
- "type": "integer"
- },
- "subProfileUrl": {
- "description": "Subscription profile URL",
- "type": "string"
- },
- "subRoutingRules": {
- "description": "Subscription global routing rules (Only for Happ)",
- "type": "string"
- },
- "subSupportUrl": {
- "description": "Subscription support URL",
- "type": "string"
- },
- "subThemeDir": {
- "description": "Absolute path to a folder containing a custom subscription page template",
- "type": "string"
- },
- "subTitle": {
- "description": "Subscription title",
- "type": "string"
- },
- "subURI": {
- "description": "Subscription server URI",
- "type": "string"
- },
- "subUpdates": {
- "description": "Subscription update interval in minutes",
- "maximum": 525600,
- "minimum": 0,
- "type": "integer"
- },
- "tgBotAPIServer": {
- "description": "Custom API server for Telegram bot",
- "type": "string"
- },
- "tgBotBackup": {
- "description": "Enable database backup via Telegram",
- "type": "boolean"
- },
- "tgBotChatId": {
- "description": "Telegram chat ID for notifications",
- "type": "string"
- },
- "tgBotEnable": {
- "description": "Telegram bot settings\nEnable Telegram bot notifications",
- "type": "boolean"
- },
- "tgBotProxy": {
- "description": "Proxy URL for Telegram bot",
- "type": "string"
- },
- "tgBotToken": {
- "description": "Telegram bot token",
- "type": "string"
- },
- "tgCpu": {
- "description": "CPU usage threshold for alerts (percent)",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "tgEnabledEvents": {
- "description": "Comma-separated event types to send via Telegram",
- "type": "string"
- },
- "tgLang": {
- "description": "Telegram bot language",
- "type": "string"
- },
- "tgMemory": {
- "description": "Memory usage threshold for alerts (percent)",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "tgRunTime": {
- "description": "Cron schedule for Telegram notifications",
- "type": "string"
- },
- "timeLocation": {
- "description": "Security settings\nTime zone location",
- "type": "string"
- },
- "trafficDiff": {
- "description": "Traffic warning threshold percentage",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "trustedProxyCIDRs": {
- "description": "Trusted reverse proxy IPs/CIDRs for forwarded headers",
- "type": "string"
- },
- "twoFactorEnable": {
- "description": "Enable two-factor authentication",
- "type": "boolean"
- },
- "twoFactorToken": {
- "description": "Two-factor authentication token",
- "type": "string"
- },
- "warpUpdateInterval": {
- "description": "WARP",
- "minimum": 0,
- "type": "integer"
- },
- "webBasePath": {
- "description": "Base path for web panel URLs",
- "type": "string"
- },
- "webCertFile": {
- "description": "Path to SSL certificate file for web server",
- "type": "string"
- },
- "webDomain": {
- "description": "Web server domain for domain validation",
- "type": "string"
- },
- "webKeyFile": {
- "description": "Path to SSL private key file for web server",
- "type": "string"
- },
- "webListen": {
- "description": "Web server settings\nWeb server listen IP address",
- "type": "string"
- },
- "webPort": {
- "description": "Web server port number",
- "maximum": 65535,
- "minimum": 1,
- "type": "integer"
- }
- },
- "required": [
- "datepicker",
- "expireDiff",
- "externalTrafficInformEnable",
- "externalTrafficInformURI",
- "ldapAutoCreate",
- "ldapAutoDelete",
- "ldapBaseDN",
- "ldapBindDN",
- "ldapDefaultExpiryDays",
- "ldapDefaultLimitIP",
- "ldapDefaultTotalGB",
- "ldapEnable",
- "ldapFlagField",
- "ldapHost",
- "ldapInboundTags",
- "ldapInsecureSkipVerify",
- "ldapInvertFlag",
- "ldapPassword",
- "ldapPort",
- "ldapSyncCron",
- "ldapTruthyValues",
- "ldapUseTLS",
- "ldapUserAttr",
- "ldapUserFilter",
- "ldapVlessField",
- "pageSize",
- "panelOutbound",
- "remarkTemplate",
- "restartXrayOnClientDisable",
- "sessionMaxAge",
- "smtpCpu",
- "smtpEnable",
- "smtpEnabledEvents",
- "smtpEncryptionType",
- "smtpHost",
- "smtpMemory",
- "smtpPassword",
- "smtpPort",
- "smtpTo",
- "smtpUsername",
- "subAnnounce",
- "subCertFile",
- "subClashEnable",
- "subClashEnableRouting",
- "subClashPath",
- "subClashRules",
- "subClashURI",
- "subDomain",
- "subEnable",
- "subEnableRouting",
- "subEncrypt",
- "subHideSettings",
- "subIncyEnableRouting",
- "subIncyRoutingRules",
- "subJsonEnable",
- "subJsonFinalMask",
- "subJsonMux",
- "subJsonPath",
- "subJsonRules",
- "subJsonURI",
- "subKeyFile",
- "subListen",
- "subPath",
- "subPort",
- "subProfileUrl",
- "subRoutingRules",
- "subSupportUrl",
- "subThemeDir",
- "subTitle",
- "subURI",
- "subUpdates",
- "tgBotAPIServer",
- "tgBotBackup",
- "tgBotChatId",
- "tgBotEnable",
- "tgBotProxy",
- "tgBotToken",
- "tgCpu",
- "tgEnabledEvents",
- "tgLang",
- "tgMemory",
- "tgRunTime",
- "timeLocation",
- "trafficDiff",
- "trustedProxyCIDRs",
- "twoFactorEnable",
- "twoFactorToken",
- "warpUpdateInterval",
- "webBasePath",
- "webCertFile",
- "webDomain",
- "webKeyFile",
- "webListen",
- "webPort"
- ],
- "type": "object"
- },
- "AllSettingView": {
- "description": "AllSettingView is the browser-safe settings read model. Secret values\nare redacted from the embedded write model and represented by presence\nflags so the UI can show configured/not configured state.",
- "properties": {
- "datepicker": {
- "description": "Date picker format",
- "type": "string"
- },
- "expireDiff": {
- "description": "Expiration warning threshold in days",
- "minimum": 0,
- "type": "integer"
- },
- "externalTrafficInformEnable": {
- "description": "Enable external traffic reporting",
- "type": "boolean"
- },
- "externalTrafficInformURI": {
- "description": "URI for external traffic reporting",
- "type": "string"
- },
- "hasApiToken": {
- "type": "boolean"
- },
- "hasLdapPassword": {
- "type": "boolean"
- },
- "hasNordSecret": {
- "type": "boolean"
- },
- "hasSmtpPassword": {
- "type": "boolean"
- },
- "hasTgBotToken": {
- "type": "boolean"
- },
- "hasTwoFactorToken": {
- "type": "boolean"
- },
- "hasWarpSecret": {
- "type": "boolean"
- },
- "ldapAutoCreate": {
- "type": "boolean"
- },
- "ldapAutoDelete": {
- "type": "boolean"
- },
- "ldapBaseDN": {
- "type": "string"
- },
- "ldapBindDN": {
- "type": "string"
- },
- "ldapDefaultExpiryDays": {
- "minimum": 0,
- "type": "integer"
- },
- "ldapDefaultLimitIP": {
- "minimum": 0,
- "type": "integer"
- },
- "ldapDefaultTotalGB": {
- "minimum": 0,
- "type": "integer"
- },
- "ldapEnable": {
- "description": "LDAP settings",
- "type": "boolean"
- },
- "ldapFlagField": {
- "description": "Generic flag configuration",
- "type": "string"
- },
- "ldapHost": {
- "type": "string"
- },
- "ldapInboundTags": {
- "type": "string"
- },
- "ldapInsecureSkipVerify": {
- "type": "boolean"
- },
- "ldapInvertFlag": {
- "type": "boolean"
- },
- "ldapPassword": {
- "type": "string"
- },
- "ldapPort": {
- "maximum": 65535,
- "minimum": 0,
- "type": "integer"
- },
- "ldapSyncCron": {
- "type": "string"
- },
- "ldapTruthyValues": {
- "type": "string"
- },
- "ldapUseTLS": {
- "type": "boolean"
- },
- "ldapUserAttr": {
- "description": "e.g., mail or uid",
- "type": "string"
- },
- "ldapUserFilter": {
- "type": "string"
- },
- "ldapVlessField": {
- "type": "string"
- },
- "pageSize": {
- "description": "UI settings\nNumber of items per page in lists (0 disables pagination)",
- "maximum": 1000,
- "minimum": 0,
- "type": "integer"
- },
- "panelOutbound": {
- "description": "Xray outbound tag for the panel's own outbound HTTP (update checks/downloads, Telegram, geo updates, outbound-subscription fetches)",
- "type": "string"
- },
- "remarkTemplate": {
- "description": "Subscription remark template ({{VAR}} tokens) rendered per client",
- "type": "string"
- },
- "restartXrayOnClientDisable": {
- "description": "Restart Xray when clients are auto-disabled by expiry/traffic limit",
- "type": "boolean"
- },
- "sessionMaxAge": {
- "description": "Session maximum age in minutes (cap at one year)",
- "maximum": 525600,
- "minimum": 1,
- "type": "integer"
- },
- "smtpCpu": {
- "description": "CPU threshold for email notifications",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "smtpEnable": {
- "description": "Email (SMTP) notification settings\nEnable email notifications",
- "type": "boolean"
- },
- "smtpEnabledEvents": {
- "description": "Comma-separated event types to send via email",
- "type": "string"
- },
- "smtpEncryptionType": {
- "description": "SMTP encryption: none, starttls, tls",
- "type": "string"
- },
- "smtpHost": {
- "description": "SMTP server host",
- "type": "string"
- },
- "smtpMemory": {
- "description": "Memory threshold for email notifications",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "smtpPassword": {
- "description": "SMTP password",
- "type": "string"
- },
- "smtpPort": {
- "description": "SMTP server port",
- "maximum": 65535,
- "minimum": 1,
- "type": "integer"
- },
- "smtpTo": {
- "description": "Comma-separated recipient emails",
- "type": "string"
- },
- "smtpUsername": {
- "description": "SMTP username",
- "type": "string"
- },
- "subAnnounce": {
- "description": "Subscription announce",
- "type": "string"
- },
- "subCertFile": {
- "description": "SSL certificate file for subscription server",
- "type": "string"
- },
- "subClashEnable": {
- "description": "Enable Clash/Mihomo subscription endpoint",
- "type": "boolean"
- },
- "subClashEnableRouting": {
- "description": "Enable global routing rules for Clash/Mihomo",
- "type": "boolean"
- },
- "subClashPath": {
- "description": "Path for Clash/Mihomo subscription endpoint",
- "type": "string"
- },
- "subClashRules": {
- "description": "Clash/Mihomo global routing rules",
- "type": "string"
- },
- "subClashURI": {
- "description": "Clash/Mihomo subscription server URI",
- "type": "string"
- },
- "subDomain": {
- "description": "Domain for subscription server validation",
- "type": "string"
- },
- "subEnable": {
- "description": "Subscription server settings\nEnable subscription server",
- "type": "boolean"
- },
- "subEnableRouting": {
- "description": "Enable routing for subscription",
- "type": "boolean"
- },
- "subEncrypt": {
- "description": "Encrypt subscription responses",
- "type": "boolean"
- },
- "subHideSettings": {
- "description": "Hide server settings in happ subscription (Only for Happ)",
- "type": "boolean"
- },
- "subIncyEnableRouting": {
- "description": "Enable routing injection for the Incy client",
- "type": "boolean"
- },
- "subIncyRoutingRules": {
- "description": "Incy routing deep-link injected into the subscription body (Only for Incy)",
- "type": "string"
- },
- "subJsonEnable": {
- "description": "Enable JSON subscription endpoint",
- "type": "boolean"
- },
- "subJsonFinalMask": {
- "description": "JSON subscription global finalmask (tcp/udp masks + quicParams)",
- "type": "string"
- },
- "subJsonMux": {
- "description": "JSON subscription mux configuration",
- "type": "string"
- },
- "subJsonPath": {
- "description": "Path for JSON subscription endpoint",
- "type": "string"
- },
- "subJsonRules": {
- "type": "string"
- },
- "subJsonURI": {
- "description": "JSON subscription server URI",
- "type": "string"
- },
- "subKeyFile": {
- "description": "SSL private key file for subscription server",
- "type": "string"
- },
- "subListen": {
- "description": "Subscription server listen IP",
- "type": "string"
- },
- "subPath": {
- "description": "Base path for subscription URLs",
- "type": "string"
- },
- "subPort": {
- "description": "Subscription server port",
- "maximum": 65535,
- "minimum": 1,
- "type": "integer"
- },
- "subProfileUrl": {
- "description": "Subscription profile URL",
- "type": "string"
- },
- "subRoutingRules": {
- "description": "Subscription global routing rules (Only for Happ)",
- "type": "string"
- },
- "subSupportUrl": {
- "description": "Subscription support URL",
- "type": "string"
- },
- "subThemeDir": {
- "description": "Absolute path to a folder containing a custom subscription page template",
- "type": "string"
- },
- "subTitle": {
- "description": "Subscription title",
- "type": "string"
- },
- "subURI": {
- "description": "Subscription server URI",
- "type": "string"
- },
- "subUpdates": {
- "description": "Subscription update interval in minutes",
- "maximum": 525600,
- "minimum": 0,
- "type": "integer"
- },
- "tgBotAPIServer": {
- "description": "Custom API server for Telegram bot",
- "type": "string"
- },
- "tgBotBackup": {
- "description": "Enable database backup via Telegram",
- "type": "boolean"
- },
- "tgBotChatId": {
- "description": "Telegram chat ID for notifications",
- "type": "string"
- },
- "tgBotEnable": {
- "description": "Telegram bot settings\nEnable Telegram bot notifications",
- "type": "boolean"
- },
- "tgBotProxy": {
- "description": "Proxy URL for Telegram bot",
- "type": "string"
- },
- "tgBotToken": {
- "description": "Telegram bot token",
- "type": "string"
- },
- "tgCpu": {
- "description": "CPU usage threshold for alerts (percent)",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "tgEnabledEvents": {
- "description": "Comma-separated event types to send via Telegram",
- "type": "string"
- },
- "tgLang": {
- "description": "Telegram bot language",
- "type": "string"
- },
- "tgMemory": {
- "description": "Memory usage threshold for alerts (percent)",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "tgRunTime": {
- "description": "Cron schedule for Telegram notifications",
- "type": "string"
- },
- "timeLocation": {
- "description": "Security settings\nTime zone location",
- "type": "string"
- },
- "trafficDiff": {
- "description": "Traffic warning threshold percentage",
- "maximum": 100,
- "minimum": 0,
- "type": "integer"
- },
- "trustedProxyCIDRs": {
- "description": "Trusted reverse proxy IPs/CIDRs for forwarded headers",
- "type": "string"
- },
- "twoFactorEnable": {
- "description": "Enable two-factor authentication",
- "type": "boolean"
- },
- "twoFactorToken": {
- "description": "Two-factor authentication token",
- "type": "string"
- },
- "warpUpdateInterval": {
- "description": "WARP",
- "minimum": 0,
- "type": "integer"
- },
- "webBasePath": {
- "description": "Base path for web panel URLs",
- "type": "string"
- },
- "webCertFile": {
- "description": "Path to SSL certificate file for web server",
- "type": "string"
- },
- "webDomain": {
- "description": "Web server domain for domain validation",
- "type": "string"
- },
- "webKeyFile": {
- "description": "Path to SSL private key file for web server",
- "type": "string"
- },
- "webListen": {
- "description": "Web server settings\nWeb server listen IP address",
- "type": "string"
- },
- "webPort": {
- "description": "Web server port number",
- "maximum": 65535,
- "minimum": 1,
- "type": "integer"
- }
- },
- "required": [
- "datepicker",
- "expireDiff",
- "externalTrafficInformEnable",
- "externalTrafficInformURI",
- "hasApiToken",
- "hasLdapPassword",
- "hasNordSecret",
- "hasSmtpPassword",
- "hasTgBotToken",
- "hasTwoFactorToken",
- "hasWarpSecret",
- "ldapAutoCreate",
- "ldapAutoDelete",
- "ldapBaseDN",
- "ldapBindDN",
- "ldapDefaultExpiryDays",
- "ldapDefaultLimitIP",
- "ldapDefaultTotalGB",
- "ldapEnable",
- "ldapFlagField",
- "ldapHost",
- "ldapInboundTags",
- "ldapInsecureSkipVerify",
- "ldapInvertFlag",
- "ldapPassword",
- "ldapPort",
- "ldapSyncCron",
- "ldapTruthyValues",
- "ldapUseTLS",
- "ldapUserAttr",
- "ldapUserFilter",
- "ldapVlessField",
- "pageSize",
- "panelOutbound",
- "remarkTemplate",
- "restartXrayOnClientDisable",
- "sessionMaxAge",
- "smtpCpu",
- "smtpEnable",
- "smtpEnabledEvents",
- "smtpEncryptionType",
- "smtpHost",
- "smtpMemory",
- "smtpPassword",
- "smtpPort",
- "smtpTo",
- "smtpUsername",
- "subAnnounce",
- "subCertFile",
- "subClashEnable",
- "subClashEnableRouting",
- "subClashPath",
- "subClashRules",
- "subClashURI",
- "subDomain",
- "subEnable",
- "subEnableRouting",
- "subEncrypt",
- "subHideSettings",
- "subIncyEnableRouting",
- "subIncyRoutingRules",
- "subJsonEnable",
- "subJsonFinalMask",
- "subJsonMux",
- "subJsonPath",
- "subJsonRules",
- "subJsonURI",
- "subKeyFile",
- "subListen",
- "subPath",
- "subPort",
- "subProfileUrl",
- "subRoutingRules",
- "subSupportUrl",
- "subThemeDir",
- "subTitle",
- "subURI",
- "subUpdates",
- "tgBotAPIServer",
- "tgBotBackup",
- "tgBotChatId",
- "tgBotEnable",
- "tgBotProxy",
- "tgBotToken",
- "tgCpu",
- "tgEnabledEvents",
- "tgLang",
- "tgMemory",
- "tgRunTime",
- "timeLocation",
- "trafficDiff",
- "trustedProxyCIDRs",
- "twoFactorEnable",
- "twoFactorToken",
- "warpUpdateInterval",
- "webBasePath",
- "webCertFile",
- "webDomain",
- "webKeyFile",
- "webListen",
- "webPort"
- ],
- "type": "object"
- },
- "ApiToken": {
- "properties": {
- "createdAt": {
- "type": "integer"
- },
- "enabled": {
- "type": "boolean"
- },
- "id": {
- "type": "integer"
- },
- "name": {
- "type": "string"
- },
- "token": {
- "description": "SHA-256 hash; the plaintext is shown only once at creation",
- "type": "string"
- }
- },
- "required": [
- "createdAt",
- "enabled",
- "id",
- "name",
- "token"
- ],
- "type": "object"
- },
- "ApiTokenView": {
- "properties": {
- "createdAt": {
- "example": 1736000000,
- "type": "integer"
- },
- "enabled": {
- "example": true,
- "type": "boolean"
- },
- "id": {
- "example": 2,
- "type": "integer"
- },
- "name": {
- "example": "central-panel-a",
- "type": "string"
- },
- "token": {
- "example": "new-token-string",
- "type": "string"
- }
- },
- "required": [
- "createdAt",
- "enabled",
- "id",
- "name"
- ],
- "type": "object"
- },
- "Client": {
- "description": "Client represents a client configuration for Xray inbounds with traffic limits and settings.",
- "properties": {
- "adTag": {
- "example": "0123456789abcdef0123456789abcdef",
- "type": "string"
- },
- "allowedIPs": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "auth": {
- "description": "Auth password (Hysteria)",
- "type": "string"
- },
- "comment": {
- "description": "Client comment",
- "type": "string"
- },
- "created_at": {
- "description": "Creation timestamp",
- "type": "integer"
- },
- "email": {
- "description": "Client email identifier",
- "type": "string"
- },
- "enable": {
- "description": "Whether the client is enabled",
- "type": "boolean"
- },
- "expiryTime": {
- "description": "Expiration timestamp",
- "type": "integer"
- },
- "flow": {
- "description": "Flow control (XTLS)",
- "type": "string"
- },
- "group": {
- "description": "Logical grouping label",
- "type": "string"
- },
- "id": {
- "description": "Unique client identifier",
- "type": "string"
- },
- "keepAlive": {
- "type": "integer"
- },
- "limitIp": {
- "description": "IP limit for this client",
- "type": "integer"
- },
- "password": {
- "description": "Client password",
- "type": "string"
- },
- "preSharedKey": {
- "type": "string"
- },
- "privateKey": {
- "type": "string"
- },
- "publicKey": {
- "type": "string"
- },
- "reset": {
- "description": "Reset period in days",
- "type": "integer"
- },
- "reverse": {
- "allOf": [
- {
- "$ref": "#/components/schemas/ClientReverse"
- }
- ],
- "description": "VLESS simple reverse proxy settings",
- "nullable": true
- },
- "secret": {
- "example": "ee1234567890abcdef1234567890abcd7777772e636c6f7564666c6172652e636f6d",
- "type": "string"
- },
- "security": {
- "description": "Security method (e.g., \"auto\", \"aes-128-gcm\")",
- "type": "string"
- },
- "subId": {
- "description": "Subscription identifier",
- "type": "string"
- },
- "tgId": {
- "description": "Telegram user ID for notifications",
- "type": "integer"
- },
- "totalGB": {
- "description": "Total traffic limit in GB",
- "type": "integer"
- },
- "updated_at": {
- "description": "Last update timestamp",
- "type": "integer"
- }
- },
- "required": [
- "comment",
- "email",
- "enable",
- "expiryTime",
- "limitIp",
- "reset",
- "security",
- "subId",
- "tgId",
- "totalGB"
- ],
- "type": "object"
- },
- "ClientInbound": {
- "properties": {
- "clientId": {
- "type": "integer"
- },
- "createdAt": {
- "type": "integer"
- },
- "flowOverride": {
- "type": "string"
- },
- "inboundId": {
- "type": "integer"
- }
- },
- "required": [
- "clientId",
- "createdAt",
- "flowOverride",
- "inboundId"
- ],
- "type": "object"
- },
- "ClientRecord": {
- "properties": {
- "adTag": {
- "type": "string"
- },
- "allowedIPs": {
- "type": "string"
- },
- "auth": {
- "type": "string"
- },
- "comment": {
- "type": "string"
- },
- "createdAt": {
- "type": "integer"
- },
- "email": {
- "type": "string"
- },
- "enable": {
- "type": "boolean"
- },
- "expiryTime": {
- "type": "integer"
- },
- "flow": {
- "type": "string"
- },
- "group": {
- "type": "string"
- },
- "id": {
- "type": "integer"
- },
- "keepAlive": {
- "type": "integer"
- },
- "limitIp": {
- "type": "integer"
- },
- "password": {
- "type": "string"
- },
- "preSharedKey": {
- "type": "string"
- },
- "privateKey": {
- "type": "string"
- },
- "publicKey": {
- "type": "string"
- },
- "reset": {
- "type": "integer"
- },
- "reverse": {},
- "secret": {
- "type": "string"
- },
- "security": {
- "type": "string"
- },
- "subId": {
- "type": "string"
- },
- "tgId": {
- "type": "integer"
- },
- "totalGB": {
- "type": "integer"
- },
- "updatedAt": {
- "type": "integer"
- },
- "uuid": {
- "type": "string"
- }
- },
- "required": [
- "adTag",
- "allowedIPs",
- "auth",
- "comment",
- "createdAt",
- "email",
- "enable",
- "expiryTime",
- "flow",
- "group",
- "id",
- "keepAlive",
- "limitIp",
- "password",
- "preSharedKey",
- "privateKey",
- "publicKey",
- "reset",
- "reverse",
- "secret",
- "security",
- "subId",
- "tgId",
- "totalGB",
- "updatedAt",
- "uuid"
- ],
- "type": "object"
- },
- "ClientReverse": {
- "properties": {
- "tag": {
- "type": "string"
- }
- },
- "required": [
- "tag"
- ],
- "type": "object"
- },
- "ClientTraffic": {
- "description": "ClientTraffic represents traffic statistics and limits for a specific client.\nIt tracks upload/download usage, expiry times, and online status for inbound clients.",
- "properties": {
- "down": {
- "example": 2097152,
- "type": "integer"
- },
- "email": {
- "example": "user1",
- "type": "string"
- },
- "enable": {
- "example": true,
- "type": "boolean"
- },
- "expiryTime": {
- "example": 1735689600000,
- "type": "integer"
- },
- "id": {
- "example": 14825,
- "type": "integer"
- },
- "inboundId": {
- "example": 1,
- "type": "integer"
- },
- "lastOnline": {
- "example": 1735680000000,
- "type": "integer"
- },
- "reset": {
- "example": 0,
- "type": "integer"
- },
- "subId": {
- "example": "i7tvdpeffi0hvvf1",
- "type": "string"
- },
- "total": {
- "example": 10737418240,
- "type": "integer"
- },
- "up": {
- "example": 1048576,
- "type": "integer"
- },
- "uuid": {
- "example": "e18c9a96-71bf-48d4-933f-8b9a46d4290c",
- "type": "string"
- }
- },
- "required": [
- "down",
- "email",
- "enable",
- "expiryTime",
- "id",
- "inboundId",
- "lastOnline",
- "reset",
- "subId",
- "total",
- "up",
- "uuid"
- ],
- "type": "object"
- },
- "FallbackParentInfo": {
- "description": "FallbackParentInfo carries everything the frontend needs to rewrite a\nchild inbound's client link: where to connect (the master's address\nand port) and which path matched on the master's fallbacks array.\nThe frontend already has the master inbound in its dbInbounds list,\nso we only ship identifiers + the match path here.",
- "properties": {
- "masterId": {
- "type": "integer"
- },
- "path": {
- "type": "string"
- }
- },
- "required": [
- "masterId"
- ],
- "type": "object"
- },
- "HistoryOfSeeders": {
- "description": "HistoryOfSeeders tracks which database seeders have been executed to prevent re-running.",
- "properties": {
- "id": {
- "type": "integer"
- },
- "seederName": {
- "type": "string"
- }
- },
- "required": [
- "id",
- "seederName"
- ],
- "type": "object"
- },
- "Host": {
- "description": "Host is an override endpoint attached to an inbound: at subscription time each\nenabled host renders one share link/proxy with its own address/port/TLS/etc.,\nsuperseding the legacy externalProxy array. Free-JSON fields are stored as\ntext and parsed in the sub layer; slice fields use the json serializer.",
- "properties": {
- "address": {
- "example": "cdn.example.com",
- "type": "string"
- },
- "allowInsecure": {
- "type": "boolean"
- },
- "alpn": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "createdAt": {
- "type": "integer"
- },
- "echConfigList": {
- "type": "string"
- },
- "excludeFromSubTypes": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "finalMask": {
- "description": "FinalMask is a JSON object of xray finalmask masks (tcp/udp/quicParams),\nmerged into this host's JSON-subscription stream. Empty = no override.",
- "type": "string"
- },
- "fingerprint": {
- "type": "string"
- },
- "hostHeader": {
- "type": "string"
- },
- "id": {
- "example": 1,
- "type": "integer"
- },
- "inboundId": {
- "example": 1,
- "type": "integer"
- },
- "isDisabled": {
- "type": "boolean"
- },
- "isHidden": {
- "type": "boolean"
- },
- "keepSniBlank": {
- "type": "boolean"
- },
- "mihomoIpVersion": {
- "enum": [
- "dual",
- "ipv4",
- "ipv6",
- "ipv4-prefer",
- "ipv6-prefer"
- ],
- "type": "string"
- },
- "mihomoX25519": {
- "type": "boolean"
- },
- "muxParams": {},
- "nodeGuids": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "overrideSniFromAddress": {
- "type": "boolean"
- },
- "path": {
- "type": "string"
- },
- "pinnedPeerCertSha256": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "port": {
- "example": 8443,
- "maximum": 65535,
- "minimum": 0,
- "type": "integer"
- },
- "remark": {
- "example": "cdn-front",
- "maxLength": 256,
- "type": "string"
- },
- "security": {
- "enum": [
- "same",
- "tls",
- "none",
- "reality"
- ],
- "example": "same",
- "type": "string"
- },
- "serverDescription": {
- "maxLength": 64,
- "type": "string"
- },
- "shuffleHost": {
- "type": "boolean"
- },
- "sni": {
- "type": "string"
- },
- "sockoptParams": {},
- "sortOrder": {
- "type": "integer"
- },
- "tags": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "updatedAt": {
- "type": "integer"
- },
- "verifyPeerCertByName": {
- "type": "string"
- },
- "vlessRoute": {
- "description": "Single VLESS route value (0-65535) baked into the subscription UUID's 3rd\ngroup (bytes 6-7), which xray reads via net.PortFromBytes(id[6:8]). Empty = none.",
- "example": "443",
- "type": "string"
- }
- },
- "required": [
- "address",
- "allowInsecure",
- "alpn",
- "createdAt",
- "echConfigList",
- "excludeFromSubTypes",
- "finalMask",
- "fingerprint",
- "hostHeader",
- "id",
- "inboundId",
- "isDisabled",
- "isHidden",
- "keepSniBlank",
- "mihomoIpVersion",
- "mihomoX25519",
- "muxParams",
- "overrideSniFromAddress",
- "path",
- "pinnedPeerCertSha256",
- "port",
- "remark",
- "security",
- "serverDescription",
- "shuffleHost",
- "sni",
- "sockoptParams",
- "sortOrder",
- "tags",
- "updatedAt",
- "verifyPeerCertByName",
- "vlessRoute"
- ],
- "type": "object"
- },
- "Inbound": {
- "description": "Inbound represents an Xray inbound configuration with traffic statistics and settings.",
- "properties": {
- "clientStats": {
- "description": "Client traffic statistics",
- "items": {
- "$ref": "#/components/schemas/ClientTraffic"
- },
- "type": "array"
- },
- "down": {
- "description": "Download traffic in bytes",
- "type": "integer"
- },
- "enable": {
- "description": "Whether the inbound is enabled",
- "example": true,
- "type": "boolean"
- },
- "expiryTime": {
- "description": "Expiration timestamp",
- "type": "integer"
- },
- "fallbackParent": {
- "allOf": [
- {
- "$ref": "#/components/schemas/FallbackParentInfo"
- }
- ],
- "description": "FallbackParent is populated by the API layer when this inbound is\nattached as a fallback child of a VLESS/Trojan TCP-TLS master.\nThe frontend uses it to rewrite client-share links so they advertise\nthe master's externally reachable endpoint instead of the child's\nloopback listen. Not persisted.",
- "nullable": true
- },
- "id": {
- "description": "Unique identifier",
- "example": 1,
- "type": "integer"
- },
- "lastTrafficResetTime": {
- "description": "Last traffic reset timestamp",
- "type": "integer"
- },
- "listen": {
- "description": "Xray configuration fields",
- "type": "string"
- },
- "nodeId": {
- "nullable": true,
- "type": "integer"
- },
- "originNodeGuid": {
- "description": "OriginNodeGuid is the panelGuid of the node that physically hosts this\ninbound, propagated up across hops (#4983). Empty for an inbound that\nlives on this panel's own xray; set to the originating node's GUID when\nthe inbound was synced from a node (kept as-is across further hops). Lets\nthe master attribute a deeply nested inbound to the real node instead of\nthe intermediate one it was fetched through.",
- "type": "string"
- },
- "port": {
- "example": 443,
- "maximum": 65535,
- "minimum": 0,
- "type": "integer"
- },
- "protocol": {
- "enum": [
- "vmess",
- "vless",
- "trojan",
- "shadowsocks",
- "wireguard",
- "hysteria",
- "http",
- "mixed",
- "tunnel",
- "tun",
- "mtproto"
- ],
- "example": "vless",
- "type": "string"
- },
- "remark": {
- "description": "Human-readable remark",
- "example": "VLESS-443",
- "type": "string"
- },
- "settings": {},
- "shareAddr": {
- "type": "string"
- },
- "shareAddrStrategy": {
- "enum": [
- "node",
- "listen",
- "custom"
- ],
- "type": "string"
- },
- "sniffing": {},
- "streamSettings": {},
- "subSortIndex": {
- "description": "1-based sort order of this inbound's links in subscription output only (lower first; ties by id)",
- "example": 1,
- "minimum": 1,
- "type": "integer"
- },
- "tag": {
- "example": "in-443-tcp",
- "type": "string"
- },
- "total": {
- "description": "Total traffic limit in bytes",
- "type": "integer"
- },
- "trafficReset": {
- "description": "Traffic reset schedule",
- "enum": [
- "never",
- "hourly",
- "daily",
- "weekly",
- "monthly"
- ],
- "type": "string"
- },
- "up": {
- "description": "Upload traffic in bytes",
- "type": "integer"
- }
- },
- "required": [
- "clientStats",
- "down",
- "enable",
- "expiryTime",
- "id",
- "lastTrafficResetTime",
- "listen",
- "port",
- "protocol",
- "remark",
- "settings",
- "shareAddr",
- "shareAddrStrategy",
- "sniffing",
- "streamSettings",
- "subSortIndex",
- "tag",
- "total",
- "trafficReset",
- "up"
- ],
- "type": "object"
- },
- "InboundClientIps": {
- "description": "InboundClientIps stores IP addresses associated with inbound clients for access control.",
- "properties": {
- "clientEmail": {
- "type": "string"
- },
- "id": {
- "type": "integer"
- },
- "ips": {}
- },
- "required": [
- "clientEmail",
- "id",
- "ips"
- ],
- "type": "object"
- },
- "InboundFallback": {
- "properties": {
- "alpn": {
- "type": "string"
- },
- "childId": {
- "type": "integer"
- },
- "dest": {
- "type": "string"
- },
- "id": {
- "type": "integer"
- },
- "masterId": {
- "type": "integer"
- },
- "name": {
- "type": "string"
- },
- "path": {
- "type": "string"
- },
- "sortOrder": {
- "type": "integer"
- },
- "xver": {
- "type": "integer"
- }
- },
- "required": [
- "alpn",
- "childId",
- "dest",
- "id",
- "masterId",
- "name",
- "path",
- "sortOrder",
- "xver"
- ],
- "type": "object"
- },
- "InboundOption": {
- "properties": {
- "enable": {
- "example": true,
- "type": "boolean"
- },
- "id": {
- "example": 1,
- "type": "integer"
- },
- "listen": {
- "type": "string"
- },
- "mtprotoDomain": {
- "type": "string"
- },
- "nodeAddress": {
- "description": "Share-host resolution inputs, mirroring the subscription's\nresolveInboundAddress so the clients page renders a node-managed WireGuard\nEndpoint that points at the node, not the master panel. NodeAddress is the\nhosting node's externally reachable address (empty for this panel's own\ninbounds); Listen and ShareAddrStrategy/ShareAddr feed the same\nnode→listen→custom fallback the share/QR links already use.",
- "type": "string"
- },
- "nodeId": {
- "description": "Hosting node; nil for this panel's own inbounds. Lets the clients\npage map a node filter onto inbound IDs (#4997).",
- "nullable": true,
- "type": "integer"
- },
- "port": {
- "example": 443,
- "type": "integer"
- },
- "protocol": {
- "example": "vless",
- "type": "string"
- },
- "remark": {
- "example": "VLESS-443",
- "type": "string"
- },
- "shareAddr": {
- "type": "string"
- },
- "shareAddrStrategy": {
- "type": "string"
- },
- "ssMethod": {
- "type": "string"
- },
- "tag": {
- "example": "in-443-tcp",
- "type": "string"
- },
- "tlsFlowCapable": {
- "example": true,
- "type": "boolean"
- },
- "wgDns": {
- "type": "string"
- },
- "wgMtu": {
- "type": "integer"
- },
- "wgPublicKey": {
- "type": "string"
- }
- },
- "required": [
- "enable",
- "id",
- "port",
- "protocol",
- "remark",
- "ssMethod",
- "tag",
- "tlsFlowCapable"
- ],
- "type": "object"
- },
- "Msg": {
- "description": "Msg represents a standard API response message with success status, message text, and optional data object.",
- "properties": {
- "msg": {
- "description": "Response message text",
- "type": "string"
- },
- "obj": {
- "description": "Optional data object"
- },
- "success": {
- "description": "Indicates if the operation was successful",
- "type": "boolean"
- }
- },
- "required": [
- "msg",
- "obj",
- "success"
- ],
- "type": "object"
- },
- "Node": {
- "description": "Node represents a remote 3x-ui panel registered with the central panel.\nThe central panel polls each node's existing /panel/api/server/status\nendpoint over HTTP using the per-node ApiToken to populate the runtime\nstatus fields below.",
- "properties": {
- "activeCount": {
- "example": 23,
- "type": "integer"
- },
- "address": {
- "example": "node1.example.com",
- "type": "string"
- },
- "allowPrivateAddress": {
- "type": "boolean"
- },
- "apiToken": {
- "example": "abcdef0123456789",
- "type": "string"
- },
- "basePath": {
- "example": "/",
- "type": "string"
- },
- "clientCount": {
- "example": 27,
- "type": "integer"
- },
- "configDirty": {
- "type": "boolean"
- },
- "configDirtyAt": {
- "type": "integer"
- },
- "cpuPct": {
- "example": 23.5,
- "type": "number"
- },
- "createdAt": {
- "example": 1700000000,
- "type": "integer"
- },
- "depletedCount": {
- "example": 1,
- "type": "integer"
- },
- "disabledCount": {
- "example": 3,
- "type": "integer"
- },
- "enable": {
- "example": true,
- "type": "boolean"
- },
- "guid": {
- "description": "Guid is the remote panel's stable self-identifier (its panelGuid),\nlearned from each heartbeat. It is the globally stable node identity used\nto attribute online clients/inbounds to the physical node across a chain\nof nodes (#4983); panel-local autoincrement ids don't survive a hop.\nObserved-state only — never user-edited.",
- "type": "string"
- },
- "id": {
- "example": 1,
- "type": "integer"
- },
- "inboundCount": {
- "example": 5,
- "type": "integer"
- },
- "inboundSyncMode": {
- "enum": [
- "all",
- "selected"
- ],
- "type": "string"
- },
- "inboundTags": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "lastError": {
- "type": "string"
- },
- "lastHeartbeat": {
- "description": "unix seconds, 0 = never",
- "example": 1700000000,
- "type": "integer"
- },
- "latencyMs": {
- "example": 42,
- "type": "integer"
- },
- "memPct": {
- "example": 45.1,
- "type": "number"
- },
- "name": {
- "example": "de-fra-1",
- "type": "string"
- },
- "netDown": {
- "example": 2097152,
- "type": "integer"
- },
- "netUp": {
- "example": 1048576,
- "type": "integer"
- },
- "onlineCount": {
- "example": 3,
- "type": "integer"
- },
- "outboundTag": {
- "type": "string"
- },
- "panelVersion": {
- "example": "v3.x.x",
- "type": "string"
- },
- "parentGuid": {
- "description": "ParentGuid + Transitive are set only when a node is surfaced as part of a\nnode tree (#4983): direct nodes carry the master panel's own GUID, a\ntransitive sub-node carries its parent node's GUID. Transitive nodes are\nread-only projections (Id == 0, not persisted) — never edited or deployed.",
- "type": "string"
- },
- "pinnedCertSha256": {
- "type": "string"
- },
- "port": {
- "example": 2053,
- "maximum": 65535,
- "minimum": 1,
- "type": "integer"
- },
- "remark": {
- "type": "string"
- },
- "scheme": {
- "enum": [
- "http",
- "https"
- ],
- "example": "https",
- "type": "string"
- },
- "status": {
- "description": "Heartbeat-updated fields. UpdatedAt advances on every probe even when\nthe row is otherwise unchanged so the UI's \"last seen\" tooltip is\ntruthful without us having to read LastHeartbeat separately.\nonline|offline|unknown",
- "example": "online",
- "type": "string"
- },
- "tlsVerifyMode": {
- "enum": [
- "verify",
- "skip",
- "pin",
- "mtls"
- ],
- "type": "string"
- },
- "transitive": {
- "type": "boolean"
- },
- "updatedAt": {
- "example": 1700000000,
- "type": "integer"
- },
- "uptimeSecs": {
- "example": 86400,
- "type": "integer"
- },
- "xrayError": {
- "type": "string"
- },
- "xrayState": {
- "description": "XrayState and XrayError are captured from the remote node's /panel/api/server/status\nduring heartbeats. They let the central panel distinguish \"panel API reachable\"\n(status=online) from \"Xray core itself has failed on the node\" for monitoring.",
- "type": "string"
- },
- "xrayVersion": {
- "example": "25.10.31",
- "type": "string"
- }
- },
- "required": [
- "activeCount",
- "address",
- "allowPrivateAddress",
- "apiToken",
- "basePath",
- "clientCount",
- "configDirty",
- "configDirtyAt",
- "cpuPct",
- "createdAt",
- "depletedCount",
- "disabledCount",
- "enable",
- "guid",
- "id",
- "inboundCount",
- "inboundSyncMode",
- "inboundTags",
- "lastError",
- "lastHeartbeat",
- "latencyMs",
- "memPct",
- "name",
- "netDown",
- "netUp",
- "onlineCount",
- "outboundTag",
- "panelVersion",
- "pinnedCertSha256",
- "port",
- "remark",
- "scheme",
- "status",
- "tlsVerifyMode",
- "updatedAt",
- "uptimeSecs",
- "xrayError",
- "xrayState",
- "xrayVersion"
- ],
- "type": "object"
- },
- "OutboundTraffics": {
- "description": "OutboundTraffics tracks traffic statistics for Xray outbound connections.",
- "properties": {
- "down": {
- "type": "integer"
- },
- "id": {
- "type": "integer"
- },
- "tag": {
- "type": "string"
- },
- "total": {
- "type": "integer"
- },
- "up": {
- "type": "integer"
- }
- },
- "required": [
- "down",
- "id",
- "tag",
- "total",
- "up"
- ],
- "type": "object"
- },
- "PanelUpdateStatus": {
- "description": "PanelUpdateStatus reports the outcome of the most recently launched panel\nself-update. RunID lets the caller confirm this status belongs to the\nupdate it started rather than a stale result left over from an earlier\nrun; State is one of \"pending\", \"success\", or \"failed\". RunID is a decimal\nstring, not a JSON number: it's a formatted UnixNano timestamp, and\nJavaScript's number type can't represent that precisely (it exceeds\nNumber.MAX_SAFE_INTEGER), which would let two different runs round to the\nsame value on the wire and defeat the whole point of this field.",
- "properties": {
- "exitCode": {
- "example": 0,
- "type": "integer"
- },
- "finishedAt": {
- "example": 1735689612,
- "type": "integer"
- },
- "runId": {
- "example": "1735689600123456789",
- "type": "string"
- },
- "state": {
- "example": "success",
- "type": "string"
- }
- },
- "required": [
- "exitCode",
- "finishedAt",
- "runId",
- "state"
- ],
- "type": "object"
- },
- "ProbeResultUI": {
- "properties": {
- "cpuPct": {
- "example": 12.5,
- "type": "number"
- },
- "error": {
- "type": "string"
- },
- "latencyMs": {
- "example": 42,
- "type": "integer"
- },
- "memPct": {
- "example": 45.2,
- "type": "number"
- },
- "panelVersion": {
- "example": "v3.x.x",
- "type": "string"
- },
- "status": {
- "example": "online",
- "type": "string"
- },
- "uptimeSecs": {
- "example": 86400,
- "type": "integer"
- },
- "xrayError": {
- "type": "string"
- },
- "xrayState": {
- "description": "XrayState/XrayError are populated on successful probes even when the node's\nXray core is not healthy. The UI uses them for a distinct \"panel ok, xray failed\" indicator.",
- "type": "string"
- },
- "xrayVersion": {
- "example": "25.10.31",
- "type": "string"
- }
- },
- "required": [
- "cpuPct",
- "error",
- "latencyMs",
- "memPct",
- "panelVersion",
- "status",
- "uptimeSecs",
- "xrayError",
- "xrayState",
- "xrayVersion"
- ],
- "type": "object"
- },
- "RealityScanResult": {
- "properties": {
- "alpn": {
- "example": "h2",
- "type": "string"
- },
- "certIssuer": {
- "example": "Google Trust Services",
- "type": "string"
- },
- "certSubject": {
- "example": "cloudflare.com",
- "type": "string"
- },
- "certValid": {
- "example": true,
- "type": "boolean"
- },
- "curveID": {
- "example": "X25519",
- "type": "string"
- },
- "feasible": {
- "example": true,
- "type": "boolean"
- },
- "h2": {
- "example": true,
- "type": "boolean"
- },
- "host": {
- "example": "www.cloudflare.com",
- "type": "string"
- },
- "ip": {
- "example": "104.16.124.96",
- "type": "string"
- },
- "latencyMs": {
- "example": 180,
- "type": "integer"
- },
- "notAfter": {
- "example": "2026-08-01T00:00:00Z",
- "type": "string"
- },
- "port": {
- "example": 443,
- "type": "integer"
- },
- "reason": {
- "type": "string"
- },
- "serverNames": {
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "target": {
- "example": "www.cloudflare.com:443",
- "type": "string"
- },
- "tls13": {
- "example": true,
- "type": "boolean"
- },
- "tlsVersion": {
- "example": "1.3",
- "type": "string"
- },
- "x25519": {
- "example": true,
- "type": "boolean"
- }
- },
- "required": [
- "alpn",
- "certIssuer",
- "certSubject",
- "certValid",
- "curveID",
- "feasible",
- "h2",
- "host",
- "ip",
- "latencyMs",
- "notAfter",
- "port",
- "reason",
- "serverNames",
- "target",
- "tls13",
- "tlsVersion",
- "x25519"
- ],
- "type": "object"
- },
- "Setting": {
- "description": "Setting stores key-value configuration settings for the 3x-ui panel.",
- "properties": {
- "id": {
- "type": "integer"
- },
- "key": {
- "type": "string"
- },
- "value": {
- "type": "string"
- }
- },
- "required": [
- "id",
- "key",
- "value"
- ],
- "type": "object"
- },
- "User": {
- "description": "User represents a user account in the 3x-ui panel.",
- "properties": {
- "id": {
- "type": "integer"
- },
- "password": {
- "type": "string"
- },
- "username": {
- "type": "string"
- }
- },
- "required": [
- "id",
- "password",
- "username"
- ],
- "type": "object"
- }
- };
|