Skip to content

Instantly share code, notes, and snippets.

View pritibiyani's full-sized avatar
💭
I may be slow to respond.

Priti pritibiyani

💭
I may be slow to respond.
  • Thoughtworks
  • Pune
View GitHub Profile
package main
import (
"fmt"
"io"
"os"
)
const (
fromFileName = "values.json"
@pritibiyani
pritibiyani / book_schema.json
Last active October 24, 2016 05:24
This is schema for sample book json.
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"author": {
"type": "string"
},
"title": {
"type": "string"
},