<< < 1 2 3 4 >   ∑:81  Sort:Date

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

References to JSON Types Defined Externally
How to reference a JSON type that is defined externally in another JSON Schema? If a JSON type is defined externally in another JSON schema, you can reference it using its absolute address. For example, the following JSON schema has two external references. One refers to a JSON Type defined in a loc...
2017-08-25, ∼2296🔥, 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, ∼2280🔥, 0💬

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, ∼2276🔥, 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, ∼2270🔥, 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, ∼2256🔥, 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, ∼2239🔥, 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, ∼2234🔥, 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, ∼2232🔥, 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, ∼2229🔥, 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, ∼2217🔥, 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, ∼2209🔥, 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, ∼2158🔥, 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, ∼2151🔥, 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, ∼2150🔥, 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, ∼2142🔥, 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, ∼2131🔥, 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, ∼2130🔥, 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, ∼2123🔥, 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, ∼2111🔥, 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, ∼2098🔥, 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, ∼2093🔥, 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, ∼2088🔥, 0💬

json_encode() - JSON_PRETTY_PRINT Option
How to use the JSON_PRETTY_PRINT option in the json_encode() call to generate a pretty looking JSON text string? If you want a pretty looking JSON text string, you can call json_encode() with the JSON_PRETTY_PRINT option. It will add line breaks and insert 4 space characters to indent level of sub s...
2023-08-17, ∼2036🔥, 0💬

<< < 1 2 3 4 >   ∑:81  Sort:Date