This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package net.sf.jpam; | |
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileNotFoundException; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| import java.io.RandomAccessFile; | |
| import java.io.Reader; | |
| import java.nio.ByteBuffer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.parboiled.examples.css; | |
| import org.parboiled.BaseParser; | |
| import org.parboiled.Rule; | |
| import org.parboiled.annotations.BuildParseTree; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| @BuildParseTree |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Internet Engineering Task Force K. Zyp, Ed. | |
| Internet-Draft SitePen (USA) | |
| Intended status: Informational G. Court | |
| Expires: February 3, 2013 August 2, 2012 | |
| A JSON Media Type for Describing the Structure and Meaning of JSON |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Internet Engineering Task Force fge. Galiegue, Ed. | |
| Internet-Draft September 11, 2012 | |
| Intended status: Informational | |
| Expires: March 15, 2013 | |
| JSON Schema: core definitions and purposes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package org.eel.kitchen.jsonschema; | |
| import com.fasterxml.jackson.databind.JsonNode; | |
| import org.eel.kitchen.jsonschema.main.JsonSchema; | |
| import org.eel.kitchen.jsonschema.main.JsonSchemaFactory; | |
| import org.eel.kitchen.jsonschema.main.Keyword; | |
| import org.eel.kitchen.jsonschema.metaschema.KeywordRegistries; | |
| import org.eel.kitchen.jsonschema.metaschema.KeywordRegistry; | |
| import org.eel.kitchen.jsonschema.metaschema.SchemaURIs; | |
| import org.eel.kitchen.jsonschema.ref.JsonRef; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "title": "Product", | |
| "description": "A product from Acme's catalog", | |
| "type": "object" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "title": "Product", | |
| "description": "A product from Acme's catalog", | |
| "type": "object", | |
| "properties": { | |
| "id": { | |
| "description": "The unique identifier for a product", | |
| "type": "integer" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "title": "Product", | |
| "description": "A product from Acme's catalog", | |
| "type": "object", | |
| "properties": { | |
| "id": { | |
| "description": "The unique identifier for a product", | |
| "type": "integer" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "http://json-schema.org/draft-04/schema#", | |
| "title": "Product", | |
| "description": "A product from Acme's catalog", | |
| "type": "object", | |
| "properties": { | |
| "id": { | |
| "description": "The unique identifier for a product", | |
| "type": "integer" | |
| }, |
OlderNewer