You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Edit collections: add, remove, edit and move Collection elements
55
67
56
68
JPostman allows you to add new Folders and Requests to your Postman Collections. You can also add variables, Pre-Request and Test Scripts, requests, and responses. In fact,
@@ -112,7 +124,7 @@ JPostman allows you to generate JSON for your collections. You can also write y
112
124
Use the `Collection.validate() method to ensure that the JSON emitted by your instance of Collection conforms with the Postman Collection schema:
113
125
114
126
```java
115
-
boolean isValid = myCollection.validate()
127
+
boolean isValid = myCollection.validate();
116
128
```
117
129
118
130
JPostman uses the NetworkNT [json-schema-validator](https://github.com/networknt/json-schema-validator) to validate JSON against a JSON schema.
0 commit comments