Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

json schema beispiel

{
  "$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 :: what is useref in react 
Javascript :: mdi/js icons with vue 
Javascript :: svg event listeners 
Javascript :: clear input fild 
Javascript :: Setting up an Express project 
Javascript :: sort array of objects based on another array javascript 
Javascript :: decrementar en java 
Javascript :: A fatal JavaScript error has occurred. Should we send an error report 
Javascript :: how to use hammerjs in ionic 5 
Javascript :: javascript prevent right click 
Javascript :: react hotjar 
Javascript :: vue not loading env variables 
Javascript :: javascript function call with variable 
Javascript :: threejs heart 
Javascript :: jquery check if input is empty on keyup 
Javascript :: javascript Use clearTimeout() Method 
Javascript :: asynchronous in javascript 
Javascript :: prompt in javascript 
Javascript :: send embed with webhook in JS 
Javascript :: array push 
Javascript :: codeceptjs "waitForClickable" 
Javascript :: node js create or check directory 
Javascript :: res.write in node js 
Javascript :: object method in javascript 
Javascript :: rounding to two decimal places 
Javascript :: nestjs AXIOS_INSTANCE_TOKEN 
Javascript :: less than equal to in javascript 
Javascript :: string to query string javascript 
Javascript :: json.parse 
Javascript :: Find All Less Than Equal To In MongoDB 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =