UNPKG

17.6 kBTypeScriptView Raw
1// Type definitions for json-schema-ref-parser 3.1.2
2// Project: https://www.npmjs.com/package/json-schema-ref-parser
3// Definitions by: Boris Cherny <https://github.com/bcherny>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5// TypeScript Version: 2.1
6
7declare module 'json-schema-ref-parser' {
8
9 import { JSONSchema4, JSONSchema4Type } from 'json-schema'
10
11 export = $RefParser
12
13 type Options = $RefParser.Options
14
15 /**
16 * This is the default export of JSON Schema $Ref Parser. You can creates instances of this class using new $RefParser(), or you can just call its static methods.
17 *
18 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/ref-parser.md
19 */
20 class $RefParser {
21
22 /**
23 * The `schema` property is the parsed/bundled/dereferenced JSON Schema object. This is the same value that is passed to the callback function (or Promise) when calling the parse, bundle, or dereference methods.
24 *
25 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/ref-parser.md#schema
26 */
27 schema: JSONSchema4
28
29 /**
30 * The $refs property is a `$Refs` object, which lets you access all of the externally-referenced files in the schema, as well as easily get and set specific values in the schema using JSON pointers.
31 *
32 * This is the same value that is passed to the callback function (or Promise) when calling the `resolve` method.
33 *
34 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/ref-parser.md#refs
35 */
36 $refs: $Refs
37
38 /**
39 * Dereferences all `$ref` pointers in the JSON Schema, replacing each reference with its resolved value. This results in a schema object that does not contain any `$ref` pointers. Instead, it's a normal JavaScript object tree that can easily be crawled and used just like any other JavaScript object. This is great for programmatic usage, especially when using tools that don't understand JSON references.
40 *
41 * The dereference method maintains object reference equality, meaning that all `$ref` pointers that point to the same object will be replaced with references to the same object. Again, this is great for programmatic usage, but it does introduce the risk of circular references, so be careful if you intend to serialize the schema using `JSON.stringify()`. Consider using the bundle method instead, which does not create circular references.
42 *
43 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/ref-parser.md#dereferenceschema-options-callback
44 *
45 * @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. See the `parse` method for more info.
46 * @param options (optional)
47 * @param callback (optional) A callback that will receive the dereferenced schema object
48 */
49 dereference(path: string, schema: string | JSONSchema4, options?: Options, callback?: (err: Error | null, schema: JSONSchema4 | null) => any): Promise<JSONSchema4>
50 dereference(path: string, options?: Options, callback?: (err: Error | null, schema: JSONSchema4 | null) => any): Promise<JSONSchema4>
51 dereference(schema: JSONSchema4, options?: Options, callback?: (err: Error | null, schema: JSONSchema4 | null) => any): Promise<JSONSchema4>
52
53 /**
54 * Bundles all referenced files/URLs into a single schema that only has internal `$ref` pointers. This lets you split-up your schema however you want while you're building it, but easily combine all those files together when it's time to package or distribute the schema to other people. The resulting schema size will be small, since it will still contain internal JSON references rather than being fully-dereferenced.
55 *
56 * This also eliminates the risk of circular references, so the schema can be safely serialized using `JSON.stringify()`.
57 *
58 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/ref-parser.md#bundleschema-options-callback
59 *
60 * @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. See the `parse` method for more info.
61 * @param options (optional)
62 * @param callback (optional) A callback that will receive the bundled schema object
63 */
64 bundle(
65 schema: string | JSONSchema4,
66 options?: Options,
67 callback?: (err: Error | null, schema: JSONSchema4 | null) => any
68 ): Promise<JSONSchema4>
69
70 /**
71 * *This method is used internally by other methods, such as `bundle` and `dereference`. You probably won't need to call this method yourself.*
72 *
73 * Parses the given JSON Schema file (in JSON or YAML format), and returns it as a JavaScript object. This method `does not` resolve `$ref` pointers or dereference anything. It simply parses one file and returns it.
74 *
75 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/ref-parser.md#parseschema-options-callback
76 *
77 * @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. The path can be absolute or relative. In Node, the path is relative to `process.cwd()`. In the browser, it's relative to the URL of the page.
78 * @param options (optional)
79 * @param callback (optional) A callback that will receive the parsed schema object, or an error
80 */
81 parse(
82 schema: string | JSONSchema4,
83 options?: Options,
84 callback?: (err: Error | null, schema: JSONSchema4 | null) => any
85 ): Promise<JSONSchema4>
86
87 /**
88 * *This method is used internally by other methods, such as `bundle` and `dereference`. You probably won't need to call this method yourself.*
89 *
90 * Resolves all JSON references (`$ref` pointers) in the given JSON Schema file. If it references any other files/URLs, then they will be downloaded and resolved as well. This method **does not** dereference anything. It simply gives you a `$Refs` object, which is a map of all the resolved references and their values.
91 *
92 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/ref-parser.md#resolveschema-options-callback
93 *
94 * @param schema A JSON Schema object, or the file path or URL of a JSON Schema file. See the `parse` method for more info.
95 * @param options (optional)
96 * @param callback (optional) A callback that will receive a `$Refs` object
97 */
98 resolve(
99 schema: string | JSONSchema4,
100 options?: Options,
101 callback?: (err: Error | null, $refs: $Refs | null) => any
102 ): Promise<$Refs>
103 }
104
105 namespace $RefParser{
106 /**
107 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/options.md
108 */
109 export type Options = object & {
110
111 /**
112 * The `parse` options determine how different types of files will be parsed.
113 *
114 * JSON Schema `$Ref` Parser comes with built-in JSON, YAML, plain-text, and binary parsers, any of which you can configure or disable. You can also add your own custom parsers if you want.
115 */
116 parse?: {
117 json?: ParserOptions | boolean
118 yaml?: ParserOptions | boolean
119 text?: (ParserOptions & { encoding?: string }) | boolean
120 }
121
122 /**
123 * The `resolve` options control how JSON Schema $Ref Parser will resolve file paths and URLs, and how those files will be read/downloaded.
124 *
125 * JSON Schema `$Ref` Parser comes with built-in support for HTTP and HTTPS, as well as support for local files (when running in Node.js). You can configure or disable either of these built-in resolvers. You can also add your own custom resolvers if you want.
126 */
127 resolve?: {
128
129 /**
130 * Determines whether external $ref pointers will be resolved. If this option is disabled, then external `$ref` pointers will simply be ignored.
131 */
132 external?: boolean
133 file?: ResolverOptions | boolean
134 http?: HTTPResolverOptions | boolean
135 }
136
137 /**
138 * The `dereference` options control how JSON Schema `$Ref` Parser will dereference `$ref` pointers within the JSON schema.
139 */
140 dereference?: {
141
142 /**
143 * Determines whether circular `$ref` pointers are handled.
144 *
145 * If set to `false`, then a `ReferenceError` will be thrown if the schema contains any circular references.
146 *
147 * If set to `"ignore"`, then circular references will simply be ignored. No error will be thrown, but the `$Refs.circular` property will still be set to `true`.
148 */
149 circular?: boolean | 'ignore'
150 }
151 }
152 }
153
154 interface HTTPResolverOptions extends ResolverOptions {
155
156 /**
157 * You can specify any HTTP headers that should be sent when downloading files. For example, some servers may require you to set the `Accept` or `Referrer` header.
158 */
159 headers?: object
160
161 /**
162 * The amount of time (in milliseconds) to wait for a response from the server when downloading files. The default is 5 seconds.
163 */
164 timeout?: number
165
166 /**
167 * The maximum number of HTTP redirects to follow per file. The default is 5. To disable automatic following of redirects, set this to zero.
168 */
169 redirects?: number
170
171 /**
172 * Set this to `true` if you're downloading files from a CORS-enabled server that requires authentication
173 */
174 withCredentials?: boolean
175 }
176
177 /**
178 * JSON Schema `$Ref` Parser comes with built-in resolvers for HTTP and HTTPS URLs, as well as local filesystem paths (when running in Node.js). You can add your own custom resolvers to support additional protocols, or even replace any of the built-in resolvers with your own custom implementation.
179 *
180 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/plugins/resolvers.md
181 */
182 interface ResolverOptions {
183
184 /**
185 * All resolvers have an order property, even the built-in resolvers. If you don't specify an order property, then your resolver will run last. Specifying `order: 1`, like we did in this example, will make your resolver run first. Or you can squeeze your resolver in-between some of the built-in resolvers. For example, `order: 101` would make it run after the file resolver, but before the HTTP resolver. You can see the order of all the built-in resolvers by looking at their source code.
186 *
187 * The order property and canRead property are related to each other. For each file that JSON Schema $Ref Parser needs to resolve, it first determines which resolvers can read that file by checking their canRead property. If only one resolver matches a file, then only that one resolver is called, regardless of its order. If multiple resolvers match a file, then those resolvers are tried in order until one of them successfully reads the file. Once a resolver successfully reads the file, the rest of the resolvers are skipped.
188 */
189 order?: number
190
191 /**
192 * The `canRead` property tells JSON Schema `$Ref` Parser what kind of files your resolver can read. In this example, we've simply specified a regular expression that matches "mogodb://" URLs, but we could have used a simple boolean, or even a function with custom logic to determine which files to resolve. Here are examples of each approach:
193 */
194 canRead: boolean | RegExp | string | string[] | ((file: FileInfo) => boolean)
195
196 /**
197 * This is where the real work of a resolver happens. The `read` method accepts the same file info object as the `canRead` function, but rather than returning a boolean value, the `read` method should return the contents of the file. The file contents should be returned in as raw a form as possible, such as a string or a byte array. Any further parsing or processing should be done by parsers.
198 *
199 * Unlike the `canRead` function, the `read` method can also be asynchronous. This might be important if your resolver needs to read data from a database or some other external source. You can return your asynchronous value using either an ES6 Promise or a Node.js-style error-first callback. Of course, if your resolver has the ability to return its data synchronously, then that's fine too. Here are examples of all three approaches:
200 */
201 read(
202 file: FileInfo,
203 callback?: (error: Error | null, data: string | null) => any
204 ): string | Buffer | Promise<string | Buffer>
205 }
206
207 interface ParserOptions {
208
209 /**
210 * Parsers run in a specific order, relative to other parsers. For example, a parser with `order: 5` will run before a parser with `order: 10`. If a parser is unable to successfully parse a file, then the next parser is tried, until one succeeds or they all fail.
211 *
212 * You can change the order in which parsers run, which is useful if you know that most of your referenced files will be a certain type, or if you add your own custom parser that you want to run first.
213 */
214 order?: number
215
216 /**
217 * All of the built-in parsers allow empty files by default. The JSON and YAML parsers will parse empty files as `undefined`. The text parser will parse empty files as an empty string. The binary parser will parse empty files as an empty byte array.
218 *
219 * You can set `allowEmpty: false` on any parser, which will cause an error to be thrown if a file empty.
220 */
221 allowEmpty?: boolean
222
223 /**
224 * Determines which parsers will be used for which files.
225 *
226 * A regular expression can be used to match files by their full path. A string (or array of strings) can be used to match files by their file extension. Or a function can be used to perform more complex matching logic. See the custom parser docs for details.
227 */
228 canParse?: boolean | RegExp | string | string[] | ((file: FileInfo) => boolean)
229 }
230
231 /**
232 * JSON Schema `$Ref` Parser supports plug-ins, such as resolvers and parsers. These plug-ins can have methods such as `canRead()`, `read()`, `canParse()`, and `parse()`. All of these methods accept the same object as their parameter: an object containing information about the file being read or parsed.
233 *
234 * The file info object currently only consists of a few properties, but it may grow in the future if plug-ins end up needing more information.
235 *
236 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/plugins/file-info-object.md
237 */
238 interface FileInfo {
239
240 /**
241 * The full URL of the file. This could be any type of URL, including "http://", "https://", "file://", "ftp://", "mongodb://", or even a local filesystem path (when running in Node.js).
242 */
243 url: string
244
245 /**
246 * The lowercase file extension, such as ".json", ".yaml", ".txt", etc.
247 */
248 extension: string
249
250 /**
251 * The raw file contents, in whatever form they were returned by the resolver that read the file.
252 */
253 data: string | Buffer
254 }
255
256 /**
257 * When you call the resolve method, the value that gets passed to the callback function (or Promise) is a $Refs object. This same object is accessible via the parser.$refs property of $RefParser objects.
258 *
259 * This object is a map of JSON References and their resolved values. It also has several convenient helper methods that make it easy for you to navigate and manipulate the JSON References.
260 *
261 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/refs.md
262 */
263 class $Refs {
264 /**
265 * This property is true if the schema contains any circular references. You may want to check this property before serializing the dereferenced schema as JSON, since JSON.stringify() does not support circular references by default.
266 *
267 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/refs.md#circular
268 */
269 circular: boolean
270
271 /**
272 * Returns the paths/URLs of all the files in your schema (including the main schema file).
273 *
274 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/refs.md#pathstypes
275 *
276 * @param types (optional) Optionally only return certain types of paths ("file", "http", etc.)
277 */
278 paths(...types: string[]): string[]
279
280 /**
281 * Returns a map of paths/URLs and their correspond values.
282 *
283 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/refs.md#valuestypes
284 *
285 * @param types (optional) Optionally only return values from certain locations ("file", "http", etc.)
286 */
287 values(...types: string[]): { [url: string]: JSONSchema4 }
288
289 /**
290 * Returns `true` if the given path exists in the schema; otherwise, returns `false`
291 *
292 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/refs.md#existsref
293 *
294 * @param $ref The JSON Reference path, optionally with a JSON Pointer in the hash
295 */
296 exists($ref: string): boolean
297
298 /**
299 * Gets the value at the given path in the schema. Throws an error if the path does not exist.
300 *
301 * See https://github.com/BigstickCarpet/json-schema-ref-parser/blob/master/docs/refs.md#getref
302 *
303 * @param $ref The JSON Reference path, optionally with a JSON Pointer in the hash
304 */
305 get($ref: string): JSONSchema4Type
306
307 /**
308 * Sets the value at the given path in the schema. If the property, or any of its parents, don't exist, they will be created.
309 *
310 * @param $ref The JSON Reference path, optionally with a JSON Pointer in the hash
311 * @param value The value to assign. Can be anything (object, string, number, etc.)
312 */
313 set($ref: string, value: JSONSchema4Type): void
314 }
315
316}
317
\No newline at end of file