<< < 1 2 3 4 >   Sort: Rank

JSON-stringify.html - JSON.stringify() Example Code
Where to get a JSON.stringify() Example Code in JavaScript? Here is a good JSON.stringify() example code in JavaScript. &lt;!-- JSON-stringify.html Copyright (c) FYIcenter.com --&gt; &lt;html&gt; &lt;body&gt; &lt;script type="text/javascript"&gt; var str1 = JSON.strin...
2021-08-04, 3458🔥, 1💬

JSON to XML Conversion at utilities-online.info
How to use the JSON to XML Conversion Tool at utilities-online.info? If you want to try the JSON to XML Conversion Tool at utilities-online.info, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at utilities-online.info. 2. Enter the following JSON value in the JSON text ...
2021-08-04, 2889🔥, 1💬

json_decode() - JSON Array to PHP Array
How to access elements from the PHP array returned from json_decode() on a JSON array? By default, json_decode() will convert a JSON Array to a PHP array with integer indexes of 0, 1, 2, ... There are different ways to access elements in the output PHP array: $array[i] - Returns the element of the g...
2021-08-04, 2521🔥, 1💬

JSON to XML Conversion at freeformatter.com
How to use the JSON to XML Conversion Tool at freeformatter.com? If you want to try the JSON to XML Conversion Tool at freeformatter.com, you can follow this tutorial: 1. Go to the JSON to XML Conversion Tool page at freeformatter.com. 2. Enter the following JSON value in the text area: ["Hello", 3....
2021-08-04, 3076🔥, 1💬

XML to JSON Conversion at jsonformatter.org
How to use the XML to JSON Conversion Tool at jsonformatter.org? If you want to try the XML to JSON Conversion Tool at jsonformatter.org, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at jsonformatter.org. 2. Enter the following XML document in the XML text area: &...
2018-03-18, 2650🔥, 0💬

XML to JSON Conversion at utilities-online.info
How to use the XML to JSON Conversion Tool at utilities-online.info? If you want to try the XML to JSON Conversion Tool at utilities-online.info, you can follow this tutorial: 1. Go to the XML to JSON Conversion Tool page at utilities-online.info. 2. Enter the following XML document in the XML text ...
2018-03-18, 2522🔥, 0💬

json_decode() - JSON Object to PHP Associative Array
How to convert JSON Objects to PHP Associative Arrays using the json_decode() function? Actually, JSON Objects match better with PHP Associative Arrays than PHP Objects. You can force json_decode() function to turn return PHP Associative Arrays for any JSON Objects by giving the second argument as "...
2018-03-04, 4849🔥, 0💬

json_last_error_msg() - PHP JSON Error Message
How to detect errors occurred in the json_decode() call? You can use the following two functions to detect error and display error message occurred during the last call of json_decode() or json_encode(). json_last_error() - Returns the error code occurred in the last json_decode() or json_encode() c...
2018-03-04, 3544🔥, 0💬

json_decode() - JSON Object to PHP Object
How to access properties from the PHP object returned from json_decode() on a JSON object? By default, json_decode() will convert a JSON Object to a PHP object of the default class "stdClass". There are different ways to access properties in the output PHP object: $obj-&gt;property_name - Return...
2018-03-04, 2373🔥, 0💬

JSON Schema Syntax
What is the JSON Schema syntax? I heard that it is very simple. JSON Schema syntax is very simple. Here are some basic JSON Schema syntax rules: 1. A JSON schema must be a valid JSON Object. 2. A JSON schema may contain zero, one or more validation properties (also called keywords). Each validation ...
2018-02-01, 1470🔥, 0💬

JSON Schema Example
Where to get a simple example of JSON Schema? Here is simple JSON Schema example, called Person_Schema.json: { "title": "Person", "type": "object", "properties": { "firstName": { "type": "string" }, "lastName": { "type": "string" }, "age": { "description": "Age in years", "type": "integer", "minimum...
2018-02-01, 1439🔥, 0💬

What Is JSON Schema
What Is JSON Schema? JSON (JavaScript Object Notation) Schema is a standard on how to define the structure of a JSON text string. JSON Schema allows you to: Describe the structure of your JSON text strings. Provide clear, human- and machine-readable documentation about your JSON text strings. Allow ...
2018-02-01, 1347🔥, 0💬

FYIcenter JSON to XML Converter
FYIcenter JSON to XML Converter is an online tool that converts a JSON text string to an XML document. JSOM object property names are limited to ASCII characters only.
2017-12-05, 1149🔥, 1💬

💬 2017-12-05 Chad: Love it!

FYIcenter JSON Validator and Formatter
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text string and converts it to a pretty format.
2017-11-25, 3306🔥, 2💬

💬 2017-11-25 Eric: Agree.

💬 2017-08-13 Neil: Not too bad!

JSON.stringify() Function in JavaScript
Where to get the detailed description of the JSON.stringify() Function in JavaScript? Here is the detailed description of the JSON.stringify() Function in JavaScript. Description - The JSON.stringify() method converts a JavaScript value to a JSON string, optionally replacing values if a replacer fun...
2017-09-08, 3348🔥, 0💬

Call JSON.stringify() with Replacer Function
What is a replacer function that you can provide the JSON.stringify() function call? The replacer function is an event handler function that is called repeatedly whenever a value, an array element or an object property is stringified during the execution of the JSON.stringify() function. The replace...
2017-09-08, 2731🔥, 0💬

JSON-parse-Transformed.html - JSON.parse() Value Transformed
How to write a reviver function to transform values while the JSON.parse() function is parsing the JSON text string? Below is a good example on using a reviver function with the JSON.parse() call to transform parsed JSON element values: &lt;!-- JSON-parse-Transformed.html Copyright (c) FYIcenter...
2017-09-08, 2301🔥, 0💬

JSON-stringify-Object.html - JSON.stringify() on Objects
How JSON.stringify() behaves on JavaScript objects? When processing an object, JSON.stringify() behave depending on the type of objects based on the following rules: Boolean, Number, and String objects are converted to the corresponding primitive JSON values during stringification. Date objects are ...
2017-09-08, 2213🔥, 0💬

JSON Schema Validation for JSON Array Values
What validation keywords I can use in JSON Schema to specifically validate JSON Array values? The current JSON Schema specification supports the following validation keywords to specifically validate JSON Array values. They are not applied if the JSON instance is not a JSON Array. "items" - If the J...
2017-09-01, 3862🔥, 0💬

JSON Schema Validation for JSON String Values
What validation keywords I can use in JSON Schema to specifically validate JSON String values? The current JSON Schema specification supports the following validation keywords to specifically validate JSON Strings values. They are not applied if the JSON instance is not a JSON String. "maxLength" - ...
2017-09-01, 1659🔥, 0💬

JSON Schema Validation Keywords
How many validation keywords are supported in JSON Schema? The current JSON Schema specification supports 29 validation keywords: "multipleOf" - If the JSON instance is a number, it must be a multiple of the given value. "maximum" - If the JSON instance is a number, it must be less than or equal to ...
2017-09-01, 1552🔥, 0💬

JSON Schema Validation for JSON Number Values
What validation keywords I can use in JSON Schema to specifically validate JSON Number values? The current JSON Schema specification supports the following validation keywords to specifically validate JSON Number values. They are not applied if the JSON instance is not a JSON Number. "multipleOf" - ...
2017-09-01, 1491🔥, 0💬

JSON Schema Validation for JSON Object Values
What validation keywords I can use in JSON Schema to specifically validate JSON Object values? The current JSON Schema specification supports the following validation keywords to specifically validate JSON Object values. They are not applied if the JSON instance is not a JSON Object. "maxProperties"...
2017-09-01, 1440🔥, 0💬

Generic JSON Schema Validation Keywords
What are other generic JSON Schema validation keywords? Several other generic JSON Schema validation keywords are listed below. They are always applied to the JSON instance. "enum" - The JSON instance must match one of the elements in the given array. For example, JSON Schema: {"enum": ["YES", "NO"]...
2017-08-25, 1610🔥, 0💬

<< < 1 2 3 4 >   Sort: Rank