mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-17 18:21:33 +01:00
43 lines
701 B
JSON
43 lines
701 B
JSON
{
|
|
"metaData" : {
|
|
"fields" : [
|
|
{
|
|
"name" : "ID",
|
|
"type" : "int"
|
|
},
|
|
{
|
|
"name" : "Name",
|
|
"type" : "string",
|
|
"maxlen" : 20
|
|
},
|
|
{
|
|
"name" : "Email",
|
|
"type" : "string",
|
|
"maxlen" : 30
|
|
}
|
|
],
|
|
"root" : "rows"
|
|
},
|
|
"rows" : [
|
|
{
|
|
"ID" : 3,
|
|
"Name" : "Michael",
|
|
"Email" : "michael@freepascal.org"
|
|
},
|
|
{
|
|
"ID" : 4,
|
|
"Name" : "jonas",
|
|
"Email" : "jonas@freepascal.org"
|
|
},
|
|
{
|
|
"ID" : 1,
|
|
"Name" : "Florian",
|
|
"Email" : "Florian@freepascal.org"
|
|
},
|
|
{
|
|
"ID" : 12,
|
|
"Name" : "Marco",
|
|
"Email" : "Marco@stack.nl"
|
|
}
|
|
]
|
|
} |