blob: c461dd4d287e4a71750133686df8346f46fadcc8 [file] [log] [blame]
{
config: {
my_flag: { type: "bool" },
my_uint8: { type: "uint8" },
my_uint16: { type: "uint16" },
my_uint32: { type: "uint32" },
my_uint64: { type: "uint64" },
my_int8: { type: "int8" },
my_int16: { type: "int16" },
my_int32: { type: "int32" },
my_int64: { type: "int64" },
my_string: {
type: "string",
max_size: 100,
},
my_vector_of_flag: {
type: "vector",
element: { type: "bool" },
max_count: 100,
},
my_vector_of_uint8: {
type: "vector",
element: { type: "uint8" },
max_count: 100,
},
my_vector_of_uint16: {
type: "vector",
element: { type: "uint16" },
max_count: 100,
},
my_vector_of_uint32: {
type: "vector",
element: { type: "uint32" },
max_count: 100,
},
my_vector_of_uint64: {
type: "vector",
element: { type: "uint64" },
max_count: 100,
},
my_vector_of_int8: {
type: "vector",
element: { type: "int8" },
max_count: 100,
},
my_vector_of_int16: {
type: "vector",
element: { type: "int16" },
max_count: 100,
},
my_vector_of_int32: {
type: "vector",
element: { type: "int32" },
max_count: 100,
},
my_vector_of_int64: {
type: "vector",
element: { type: "int64" },
max_count: 100,
},
my_vector_of_string: {
type: "vector",
element: {
type: "string",
max_size: 100,
},
max_count: 100,
},
},
}