I have a variable in a yaml file with an example structure of: [ [ 1.0, 2.0 ], [ 3.0, 4.0 ] ]
I have defined this has
type: list
items:
type:double
Am I right to create this as a double even though each element is technically 2 different doubles or is another type for the items correct? Thanks