I'm trying to find a format that will help solve a very particular problem:
- Text first solution.
- Ability to specify complex objects in a single text line (properties, key\value, lists, complex objects)
- Object metadata structure should be separate from the data.
For example: Metadata: Prop1:int|Prop2:string|PropList:int[,] Data: 20|Something|10,20,30
that would mean:
Prop1 = 20
Prop2 = "Something"
PropList = [10,20,30]
Is there any existing serialization format resembling this?