{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AddSnapshotsInput", "title": "AddSnapshotsInput", "type": "object", "properties": { "snapshots": { "type": "array", "items": { "$ref": "#/components/schemas/SnapshotManifestItem" } }, "baseline_hashes": { "type": "object", "additionalProperties": { "type": "string" } } }, "required": [ "snapshots" ] }