=========================== Composeinfo file format 1.0 =========================== composeifo.json files provide details about composes which includes product information, variants, architectures and paths. File Format =========== Composeinfo is stored as a JSON serialized dictionary. It's recommended to sort keys alphabetically and use 4 spaces for indentation in order to read and diff composeinfo.json files easily. :: { "header": { "version": "1.0" # metadata version; format: $major.$minor }, "payload": { "compose": { "id": , "date": , "respin": , "type": , "label": , "final": # true if a compose is final for a milestone (for example latest Beta-1.x) }, "release": { "name": , "version": , "short": , "is_layered": , }, "base_product": { "name": , "version": , "short": , }, "variants": { variant_uid: { "id": , "uid": , "name": , "type": , "arches": [], "paths": { path_category: { arch: , }, }, }, }, }, }