Basic person: Difference between revisions

From Wikisphere
Jump to navigation Jump to search
Created page with "{ "title": "Person", "type": "object", "id": "person", "properties": { "name": { "type": "string", "description": "First and Last name", "minLength": 4 }, "age": { "type": "integer", "default": 21, "minimum": 18, "maximum": 99 }, "gender": { "type": "string", "enum": [ "male", "female" ] } } }"
 
Admin changed the content model of the page JsonSchema:Basic person from "wikitext" to "JSON"
(No difference)

Revision as of 08:04, 4 November 2025

title"Person"
type"object"
id"person"
properties
name
type"string"
description"First and Last name"
minLength4
age
type"integer"
default21
minimum18
maximum99
gender
type"string"
enum
"male"
"female"