🌐
Zod
zod.dev › json-schema
JSON Schema | Zod
z.toJSONSchema(z.globalRegistry, { uri: (id) => `https://example.com/${id}.json` }); // => { // schemas: { // User: { // id: 'User', // type: 'object', // properties: { // name: { type: 'string' }, // posts: { // type: 'array', // items: { '$ref': 'https://example.com/Post.json' } // } // }, // required: [ 'name', 'posts' ], // additionalProperties: false, // }, // Post: { // id: 'Post', // type: 'object', // properties: { // title: { type: 'string' }, // content: { type: 'string' }, // author: { '$ref': 'https://example.com/User.json' } // }, // required: [ 'title', 'content', 'author' ], // additionalProperties: false, // } // } // } Metadata and registries · Attaching and manipulatinvg metadata on Zod schemas · Codecs · Bidirectional transformations with encode and decode ·
🌐
Lianja
lianja.com › doc › index.php › JSON_DECODE()
JSON DECODE() - Lianjapedia
February 22, 2023 - myobj = json_decode('{"Name":"Barry", "Company":"Lianja", "Items":["One", "two"]}') ? myobj ? myobj.name ? myobj.company ? myobj.items[1] ?
🌐
Php2golang
php2golang.com › method › function.json-decode.html
PHP json_decode
GoLang alternatives for PHP functions · json_decode — Decodes a JSON string
🌐
DbeTech
dbestech.com › tutorials › php-json-encode-and-json-decode-method
PHP json_encode and json_decode method
$jsonString = '{"name":"John", "age":30, "city":"New York"}'; $data = json_decode($jsonString); echo $data->name; // Output: John echo $data->age; // Output: 30 echo $data->city; // Output: New York
🌐
JSON Schema Validator
jsonschemavalidator.net
JSON Schema Validator - Newtonsoft
public class JsonSchemaController : ControllerBase { [HttpPost] [Route("api/jsonschema/validate")] public ValidateResponse Validate(ValidateRequest request) { // Load schema JSchema schema = JSchema.Parse(request.Schema); JToken json = JToken.Parse(request.Json); // Validate json IList<ValidationError> errors; bool valid = json.IsValid(schema, out errors); // Return error messages and line info to the browser return new ValidateResponse { Valid = valid, Errors = errors }; } } public class ValidateRequest { public string Json { get; set; } public string Schema { get; set; } } public class ValidateResponse { public bool Valid { get; set; } public IList<ValidationError> Errors { get; set; } }
🌐
W3Schools
w3schools.com › php › func_json_decode.asp
PHP json_decode() Function
$jsonobj = '{"Peter":35,"Ben":37,"Joe":43}'; $obj = json_decode($jsonobj); echo $obj->Peter; echo $obj->Ben; echo $obj->Joe; Run Example »
🌐
Flutter
api.flutter.dev › flutter › dart-convert › jsonDecode.html
jsonDecode function - dart:convert library - Dart API
const jsonString = '{"text": "foo", "value": 1, "status": false, "extra": null}'; final data = jsonDecode(jsonString); print(data['text']); // foo print(data['value']); // 1 print(data['status']); // false print(data['extra']); // null const jsonArray = ''' [{"text": "foo", "value": 1, "status": true}, {"text": "bar", "value": 2, "status": false}] '''; final List<dynamic> dataList = jsonDecode(jsonArray); print(dataList[0]); // {text: foo, value: 1, status: true} print(dataList[1]); // {text: bar, value: 2, status: false} final item = dataList[0]; print(item['text']); // foo print(item['value']); // 1 print(item['status']); // false
Find elsewhere
🌐
PHP
php.net › manual › en › function.json-decode.php
PHP: json_decode - Manual
You would expect that recoding and re-encoding will always yield the same JSON string, but take this example: $json = '{"0": "No", "1": "Yes"}'; $array = json_decode($json, true); // decode as associative hash print json_encode($array) .
🌐
W3Schools
w3schools.com › python › python_json.asp
Python JSON
If you have a Python object, you can convert it into a JSON string by using the json.dumps() method.
🌐
OpenID
openid.net › specs › openid-connect-core-1_0.html
Final: OpenID Connect Core 1.0 incorporating errata set 2
An End-User is one example of an Entity. ... Claim specified by the Client as being necessary to ensure a smooth authorization experience for the specific task requested by the End-User. ... OAuth 2.0 flow in which an Authorization Code is returned from the Authorization Endpoint, some tokens are returned from the Authorization Endpoint, and others are returned from the Token Endpoint. ... JSON Web Token (JWT) (Jones, M., Bradley, J., and N.
🌐
W3Resource
w3resource.com › JSON › php-json-installation-and-decode-function.php
PHP JSON installation and json_decode() function | JSON tutorial | w3resource
November 7, 2025 - JSON supports three PHP functions : json_decode, json_encode and json_last_error. We will discuss all of these functions with examples in the following section of this page.
🌐
TypeScript
typescriptlang.org › tsconfig
TypeScript: TSConfig Reference - Docs on every TSConfig option
For example, that means packages within ./node_modules/@types/, ../node_modules/@types/, ../../node_modules/@types/, and so on. If types is specified, only packages listed will be included in the global scope. For instance: ... This tsconfig.json file will only include ./node_modules/@types/node, ...
🌐
BitDegree
bitdegree.org › learn › best-code-editor › php-json-decode-example-8
PHP json_decode: Example of Using the HTTP POST method
obj = { "table":"customers", "limit":10 }; dbParam = JSON.stringify(obj); xmlhttp = new XMLHttpRequest(); xmlhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { newObj = JSON.parse(this.responseText); for (x in newObj) { txt += newObj[x].name + "<br>"; } document.getElementById("JSON").innerHTML = txt; } }; xmlhttp.open("POST", "JSON.php", true); xmlhttp.setRequestHeader("Content-type", "application/learn-encoded"); xmlhttp.send("x=" + dbParam);
🌐
W3docs
w3docs.com › learn-php › json-decode.html
Understanding the json_decode Function in PHP
It converts a JSON string into a PHP variable. It decodes base64 encoded data.
🌐
Jsonpath
jsonpath.com
JSONPath Online Evaluator
We cannot provide a description for this page right now
🌐
JDELIST
jdelist.com › home › forums › jd edwards® enterprise one / one world discussions › jd edwards® orchestrator
E9.2 - JD Edwards Orchestrator - How to Handle JSON Array Input Directly Without Encapsulation? | JDELIST.com - JD Edwards ERP Forums
October 18, 2024 - Hi everyone, I'm currently facing an issue with JD Edwards Orchestrator that I hope someone here has already dealt with. I need to process a JSON input with the following structure: [ {...
🌐
OnlinePHP
onlinephp.io › json-decode › examples
json_decode - Examples
Examples of json_decode. Info and examples on json_decode PHP Function