Skip to content

Instantly share code, notes, and snippets.

View josephbarsness's full-sized avatar

Joseph Barsness josephbarsness

  • Minneapolis, Minnesota
View GitHub Profile
@JamesMessinger
JamesMessinger / json-schema.js
Created July 27, 2017 19:21
Using JSON Schema in Postman (via an environment variable)
// Load the JSON Schema
const customerSchema = JSON.parse(environment.customerSchema);
// Test whether the response matches the schema
var customer = JSON.parse(responseBody);
tests["Customer is valid"] = tv4.validate(customer, customerSchema);