aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/md/docs/json_schemas/3/usage.md
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/md/docs/json_schemas/3/usage.md')
-rw-r--r--packages/website/md/docs/json_schemas/3/usage.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/packages/website/md/docs/json_schemas/3/usage.md b/packages/website/md/docs/json_schemas/3/usage.md
new file mode 100644
index 000000000..2b72eeaad
--- /dev/null
+++ b/packages/website/md/docs/json_schemas/3/usage.md
@@ -0,0 +1,14 @@
+The following example shows you how to validate a 0x order using the `@0x/json-schemas` package.
+
+```javascript
+import {SchemaValidator, ValidatorResult, schemas} from '@0x/json-schemas';
+
+const {orderSchema} = schemas;
+const validator = new SchemaValidator();
+
+const order = {
+ ...
+};
+const validatorResult: ValidatorResult = validator.validate(order, orderSchema); // Contains all errors
+const isValid: boolean = validator.isValid(order, orderSchema); // Only returns boolean
+```