Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

json schema eg

{
  "$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 :: .env file example react native 
Javascript :: alert message 
Javascript :: javascript get first entry from set 
Javascript :: some js es6 
Javascript :: loop through async javascript -1 
Javascript :: full form of json 
Javascript :: mongoose encrypt database using mongoose encrypt package 
Javascript :: Material-ui snowflake icon 
Javascript :: associative multidimensional array javascript 
Javascript :: sort dates javascript 
Javascript :: How to have hotjar in react-hotjar 
Javascript :: jquery get table 
Javascript :: new features of angular 11 
Javascript :: check if browser is online 
Javascript :: React Redux reducer crud 
Javascript :: Find largest number from array by function in javascript 
Javascript :: compare if strings are equal javascript 
Javascript :: active class always appear in navlink 
Javascript :: google scripts string split 
Javascript :: this keyword in javascript 
Javascript :: jquery async await $.getScript( 
Javascript :: download string as file express js 
Javascript :: transition scrolling 
Javascript :: form submit jquery 
Javascript :: node express tutorial 
Javascript :: make alphabet js 
Javascript :: deserialize json to c# object 
Javascript :: react get current date minus 7 days 
Javascript :: js remove english word from string 
Javascript :: node api return file 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =