Explorar el Código

Started writing JSON Schema... not sure if doing right.

dev
Bryan Miller hace 6 años
padre
commit
fbf13b536d
Se han modificado 1 ficheros con 20 adiciones y 0 borrados
  1. +20
    -0
      app/js/common/JSONSchema.js

+ 20
- 0
app/js/common/JSONSchema.js Ver fichero

@@ -0,0 +1,20 @@


var NESPaletteSchema = JSON.stringify({
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "NESPaletteSchema.json",
"type":"array",
"minItems":25,
"maxItems":25,
"items":{
"type":"number",
"minimum": 0,
"exclusiveMaximum": 64
}
});


var PalettesStoreSchema = JSON.stringify({
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "PalettesStoreSchema.json",
});

Cargando…
Cancelar
Guardar