Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

json schema example

{
  "$id": "https://example.com/person.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Person",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "description": "The person's first name."
    },
    "lastName": {
      "type": "string",
      "description": "The person's last name."
    },
    "age": {
      "description": "Age in years which must be equal to or greater than zero.",
      "type": "integer",
      "minimum": 0
    }
  }
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: json schema e.g. 
Javascript :: string date to date in javascript 
Javascript :: javascript remove elements from array with value 
Javascript :: reactjs import electron 
Javascript :: Add select option by using <a in AngularJS 
Javascript :: const { something} javascript 
Javascript :: slice javascript 
Javascript :: add image inside a div on specific position javascript 
Javascript :: get image from s3 bucket angular 
Javascript :: how to delete current clicked item in array react 
Javascript :: how to remove letters from an array javascript 
Javascript :: edit json text react 
Javascript :: kaboom.js 
Javascript :: add jquery through consol 
Javascript :: Half or Right Triangle star pattern in JavaScript 
Javascript :: winston logger levels 
Javascript :: what is the use of useparams in react 
Javascript :: Hide ReactTooltip after hover off 
Javascript :: how to not use relative imports in react js 
Javascript :: javascript modify href attr 
Javascript :: how to extract strings in array js 
Javascript :: data-parsley-errors-container 
Javascript :: how to write a function in javascript 
Javascript :: rc-notification react 
Javascript :: array from js 
Javascript :: Extension server error: Object not found: <top, source: devtools://devtools/bundled/extensions/extensions.js (216) [9900:1226/171021.620 
Javascript :: javascript find first element of array 
Javascript :: d3.js onclick event 
Javascript :: react fun tion 
Javascript :: contextMenus chrome extensions 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =