Dl/DataType: Difference between revisions
From stonehomewiki
Jump to navigationJump to search
Stonezhong (talk | contribs) (Created page with "<p> Data Lake Knowledge Center | Models</p> = Introduction = <div class="toccolours mw-collapsible mw-collapsed expandable"> <div class="mw-collapsible-preview">Definition</div> <div class="mw-collapsible-content"> <big><b>A DataType object describe the schema of nested data.</b></big> <b>Fields</b> <pre><nowiki> id: UUID Primary key type: str The type of the data. For example: "int", "number", "object". We follow the [https://json-sc...") |
Stonezhong (talk | contribs) |
||
| Line 27: | Line 27: | ||
id: "617b2e86-9698-4b99-8956-57ce99d8de39", | id: "617b2e86-9698-4b99-8956-57ce99d8de39", | ||
type: "string" | type: "string" | ||
} | |||
# This represent a structure which has "x" and "y" number | |||
{ | |||
id: "617b2e86-9698-4b99-8956-57ce99d8de39", | |||
type: "object", | |||
properties: { | |||
"x": { | |||
type: "number", | |||
}, | |||
"y": { | |||
type: "number", | |||
} | |||
} | |||
} | } | ||
</nowiki></pre> | </nowiki></pre> | ||
</div> | </div> | ||
</div> | </div> | ||