Tagged Questions

JSON Schema is self descriptive JSON Schema describing the syntax of JSON Schema.JSON Schemas are written in JSON.More details at http://json-schema.org/

learn more… | top users | synonyms

11
votes
4answers
5k views

Is JSON validation a best practice?

Is it a best practice to validate JSON? With both a JSON schema proposal and a JavaScript implementation of a JSON Schema validator, this practice would seem relatively frictionless to implement. ...
9
votes
5answers
343 views

Is there a tool to generate a JSON schema from an XML schema through Java?

Is anyone aware of a tool or approach from which we can generate a JSON schema from XML schema or XML schema from JSON schema by Java?
4
votes
2answers
410 views

writing more complex json schemas that have dependencies upon other keys

I've been writing simple JSON schemas but I ran into an API input call that is a bit more complex. I have one restful end route that can take 3 very different types of JSON: localhost/foo can take: ...
4
votes
2answers
2k views

JSON schema validation with PHP

Is there any PHP library that validates a JSON object against a JSON Schema?
3
votes
1answer
477 views

Generate C# classes from JSON Schema

I'm creating a C# WCF Web Service that return a lot of data in a JSON format. The client is an iPad application that is currently being developped by another team, So I'm working on specifications, ...
3
votes
1answer
730 views

JSON schema validation

Is there a stable library that can validate JSON against a schema? json-schema.org provides a list of implementations. Notably C and C++ are missing. Is there a reason I can't easily find a C++ ...
2
votes
3answers
426 views

How can I export a rails model to json schema?

I am looking to optimize how we build forms for some of our models and ideally I would like to build them from json-schema. Is there a gem or the like which would allow me to export a model ...
1
vote
1answer
63 views

Generate JSON-schema from C# class

I am in the process of writing an API using wcf-web-api. I would like to be able to produce a json-schema from my "Resource" POCO classes. I also understand that it's possible to validate json using a ...
1
vote
2answers
81 views

'Storing' a Mongoose Schema/Model (not the document) for future use

Problem: I'm making a web service that allows developers to 'register' their Mongoose schemas - they'll create JSON schemas in the browser, which will then be AJAX'ed to my server. So I'll create a ...
1
vote
2answers
103 views

JSON schema : allow to store information in keys

I want to formally define a schema for a JSON-based protocol. I have two criteria for the schema: 1. I want to be able to use tools to create parser/serializer (php and .net). 2. Result JSON should be ...
1
vote
1answer
324 views

JSON Schema for mobile application development

I am researching technologies for use in building a set of mobile applications with some lightweight traditional CMS authoring capabilities around JSON content. Given the availability of JSON ...
1
vote
2answers
234 views

JSON Schema Builder Program

Is there an existing program that helps forming a JSON Schema?
1
vote
1answer
90 views

How can I go about translating Doctrines YAML models into json-schema

Basically I am looking to be able to reuse model definitions to target both Doctrine models and JSON-Schema. I don't care if it means defining it in a 3rd model language and having the ability to ...
0
votes
1answer
64 views

How do i add $ref to a JSONSchema?

I have a JSONSchema which will have some items . Now the schema/s that define those items need to be referred in the main schema ? * one schema that you reference: { "id": ...
0
votes
1answer
86 views

Invalid Operation Exception , No elements in the sequence

private static void WriteJson(string filepath, string filename, JsonSchema jsonschema) { using (TextWriter writer = ...
0
votes
0answers
29 views

Does JSON Schema validation in common-js utils support references?

Does JSON Schema validation in common-js utils support references? I can not do this with https://github.com/kriszyp/commonjs-utils/blob/master/json-schema.js I tried following code: { "type" : ...
0
votes
0answers
43 views

How to manage multiple JSON schema files?

I'm trying to validate my JSON API using node.js + json-schema.js from commonjs-utils. Just single validation was easy but could not find right way how to manage multiple schema files to enable ...
0
votes
1answer
55 views

Maintain directory hierarchy when converting from XSD to JAVA Class?

I have a set of XSD Schemas , that are present in a directory structure . I am using JAXB to convert it into Java Classes . Now when converting it it breaks the schema into several classes and puts ...
0
votes
1answer
194 views

Is this correct JSONSchema/Json for the XSD?

The objective is to convert an XSD schema to JSON Schema. I am first trying to XSD to JSON and then see if i can fix the JSON to become JSON Schema.All this procedure is because right now i don't know ...
0
votes
1answer
103 views

How to set the type of Json schema?

I have a Json Schema (shown below) which is created by Jackson through the representing Json class. "startDate" : { "type" : "number" }, "endDate" : { "type" : "number" }, But I want the type ...
0
votes
0answers
129 views

Hoping to port a working jQuery Validator implementation's rules to JSONSchema

I'm attempting to move an existing (and working) client-side jQuery validation schema to JSONSchema to allow myself to validate arbitrary JSON on both the client and server. My application is ...