Ajax: Difference between revisions

From Wikisphere
Jump to navigation Jump to search
No edit summary
 
No edit summary
 
Line 2: Line 2:
     "type": "array",
     "type": "array",
     "title": "People",
     "title": "People",
     "x-layout": "booklet",
     "x-layout": "tabs",
     "items": {
     "items": {
         "title": "Person",
         "title": "Person",
Line 9: Line 9:
             {
             {
                 "$ref": "JsonSchema:BasicPerson",
                 "$ref": "JsonSchema:BasicPerson",
                 "title": "Basic Person"
                 "title": "Basic Person",
                "type": "object"
             },
             },
             {
             {
                 "$ref": "JsonSchema:Person",
                 "$ref": "JsonSchema:Person",
                 "title": "Complex Person"
                 "title": "Complex Person",
                "type": "object"
             }
             }
         ]
         ]
     }
     }
}
}

Latest revision as of 00:00, 15 January 2001

type"array"
title"People"
x-layout"tabs"
items
title"Person"
headerTemplate"{{i}} - {{self.name}}"
anyOf
$ref"JsonSchema:BasicPerson"
title"Basic Person"
type"object"
$ref"JsonSchema:Person"
title"Complex Person"
type"object"