<< < 1 2 3 4 >   Sort: Date

JSON to XML Conversion
Where to find tutorials on JSON to XML Conversion? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on JSON to XML Conversion. Mapping JSON Values to XML Elements Convert JSON to XML with PHP JSON to XML Converter at fyicenter.com JSON to XML Conve...
2023-07-11, 1477🔥, 0💬

JSON Type Definitions and References
How to define a JSON type and reference it in JSON Schema? If you want to define a JSON type, and reference it later in your JSON Schema, you can: 1. Name your JSON type can put it inside the "definitions" property. For example, "rating" as a JSON type can be defined as shown below: { "definitions":...
2017-08-25, 1468🔥, 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, 1467🔥, 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, 1466🔥, 0💬

XML to JSON Conversion at convertjson.com
How to use the XML to JSON Conversion Tool at convertjson.com? If you want to try the XML to JSON Conversion Tool at convertjson.com, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at convertjson.com. 2. Enter the following XML document in the XML text area: &lt;pro...
2023-08-25, 1459🔥, 0💬

Multiple JSON Schema Validation Keywords
How multiple Validation Keywords work in JSON Schema? Multiple Validation Keywords work in JSON Schema with the "AND" logic. The order of validation keywords is not important. In other words, all of them are applied individually to the JSON instance based their specified conditions. For example, the...
2017-08-25, 1453🔥, 0💬

XML to JSON Conversion at codebeautify.com
How to use the XML to JSON Conversion Tool at codebeautify.com? If you want to try the XML to JSON Conversion Tool at codebeautify.com, you can follow this tutorial: 1. Go to the JSON and XML Conversion Tool page at codebeautify.com. 2. Enter the following XML document in the XML text area: &lt;...
2023-08-25, 1452🔥, 0💬

JSON Type Unique Identifications
How to assign a unique identification to a JSON type in JSON Schema? Using "definitions" and "$ref" properties allows to define JSON types and reference them internally in the same JSON schema or externally in another JSON schema. You can also assign a unique identification to a JSON type with the "...
2017-08-20, 1435🔥, 0💬

JSON to XML Conversion at browserling.com
How to use the JSON to XML Conversion Tool at browserling.com? If you want to try the JSON to XML Conversion Tool at browserling.com, you can follow this tutorial: 1. Go to the JSON to XML Conversion Tool page at browserling.com. 2. Enter the following JSON value in the text area: ["Hello", 3.14, tr...
2023-08-25, 1400🔥, 0💬

What Is JavaScript JSON Object
What Is JavaScript JSON Object? The JSON object is a built-in object in the JavaScript engine that offers 2 functions to parse and generate JSON text strings: 1. JSON.parse() - Parses a text string from a JSON text string, constructs the JavaScript value. An optional reviver function can be provided...
2023-04-13, 1388🔥, 0💬

Issues of Converting XML to JSON
What are main issues of converting XML to JSON? Here are main issues of converting an XML document to a JSON text string: 1. Differentiation of attributes and sub elements - An XML Element may have 2 types of named sub structures: attributes and sub elements. If we want to convert both XML attribute...
2023-07-11, 1379🔥, 0💬

Introduction of JSON Schema
Where to find tutorials in understanding what is JSON Schema? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team in understanding what is JSON Schema. What Is JSON Schema JSON Schema Example JSON Schema Syntax JSON Schema Validation Keywords JSON Sch...
2023-07-08, 1371🔥, 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, 1363🔥, 0💬

JSON-parse.html - JSON.parse() Example Code
Where to get a JSON.parse() Example Code in JavaScript? Here is a good JSON.parse() example code in JavaScript. &lt;!-- JSON-parse.html Copyright (c) FYIcenter.com --&gt; &lt;html&gt; &lt;body&gt; &lt;script type="text/javascript"&gt; var val1 = JSON.parse('2020'); //...
2023-04-13, 1354🔥, 0💬

'type' - JSON Schema Validation Keyword
How to use the "type" JSON Schema validation keyword to validate JSON instances? "type" is a generic JSON Schema validation keyword that always applied to the JSON instance. When "type" is specified, the JSON instance must match one of the given JSON types: "null", "boolean", "object", "array", "num...
2017-08-25, 1350🔥, 0💬

JSON Validation at fyicenter.com
How to use the JSON Validation Tool at fyicenter.com? If you want to try the JSON Validation Tool at fyicenter.com, you can follow this tutorial: 1. Go to the FYIcenter JSON Validator and Formatter page at fyicenter.com. 2. Enter the following JSON text string in the text area: { "firstName": "John"...
2023-08-17, 1348🔥, 0💬

JSON Type Metadata
How to add documentation information to a JSON type with metadata? You can add documentation information to a JSON type with there metadata properties: "title" - Takes a JSON string as a short description for this JSON type. "description" - Takes a JSON string as a long description for this JSON typ...
2023-07-08, 1342🔥, 0💬

json_decode() - JSON to PHP Data Type Mapping
How data types are mapped from the JSON text string to the PHP variable when calling json_decode() function? Data types are mapped from the JSON text string to the PHP variable based on the following table, when calling json_decode() function: JSON Data Type &gt; PHP Data Type -------------- &am...
2023-02-28, 1327🔥, 0💬

JSON-stringify-space.html - JSON.stringify() Friendly Spaced
How to call the JSON.stringify() function with space argument to generate JSON text strings indented with friendly spaces? If you call JSON.stringify() without the "space" argument, the JSON text string will be generated in a single line, with no line breaks and space indentions. If you want to brea...
2023-09-05, 1325🔥, 0💬

Mapping JSON Values to XML Elements
What is the standard to map JSON values to XML elements? There seems to be no industry standard on how to map JSON values to XML elements. But there are some commonly used conventions: 1. Automatically adding a root element with "root" or "document" as the element tag. For example: JSON: { "a": 1, "...
2023-07-11, 1323🔥, 0💬

json_decode() Function in PHP
Where to get the detailed description of the json_decode() Function in PHP? Here is the detailed description of the json_decode() Function in PHP. Description - The json_decode() function parses a JSON text string and converts it into a PHP variable. Syntax - mixed json_decode(string $json[, bool $a...
2023-02-28, 1317🔥, 0💬

JSON to XML Converter at fyicenter.com
How to use the JSON to XML Conversion Tool at fyicenter.com? If you want to try the JSON to XML Conversion Tool at fyicenter.com, you can follow this tutorial: 1. Go to the FYIcenter JSON to XML Converter page at fyicenter.com. 2. Enter the following JSON text string in the text area: { "firstName":...
2023-07-11, 1316🔥, 0💬

JSON to XML Conversion at convertjson.com
How to use the JSON to XML Conversion Tool at convertjson.com? If you want to try the JSON to XML Conversion Tool at convertjson.com, you can follow this tutorial: 1. Go to the JSON to XML Conversion Tool page at convertjson.com. 2. Enter the following JSON value in the text area: ["Hello", 3.14, tr...
2023-08-25, 1299🔥, 0💬

json_encode() - PHP to JSON Data Type Mapping
How data types are mapped from the PHP variable to the JSON text string when calling the json_encode() function? Data types are mapped from the PHP variable to the JSON text string based on the following table, when calling the json_encode() function: PHP Data Type &gt; JSON Data Type ----------...
2023-08-17, 1294🔥, 0💬

<< < 1 2 3 4 >   Sort: Date