JsonSchema:MetaSchema/Subitem

JsonSchema:MetaSchema/Subitem

From Wikisphere
Revision as of 00:00, 15 January 2001 by 127.0.0.1 (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
$schema"http://json-schema.org/draft-07/schema#"
type"object"
properties
name
type"string"
description"The name of the item"
title
type"string"
description"The title of the item"
type
type"string"
enum
"object"
"array"
"tuple"
description"The data type"
layout
type"string"
description"Layout configuration that depends on the type"
required
"name"
"type"
additionalPropertiesfalse
allOf
if
properties
type
const"object"
required
"type"
then
properties
layout
enum
"vertical"
"horizontal"
"grid"
if
properties
type
const"array"
required
"type"
then
properties
layout
enum
"list"
"table"
"cards"
if
properties
type
const"tuple"
required
"type"
then
properties
layout
enum
"compact"
"normal"
"relaxed"