@contentauth/c2pa-types 0.4.1 → 0.4.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,740 @@
1
+ /**
2
+ * This file was automatically generated by json-schema-to-typescript.
3
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
4
+ * and run json-schema-to-typescript to regenerate this file.
5
+ */
6
+ export type UriOrResource = ResourceRef | HashedUri;
7
+ export type DateT = string;
8
+ /**
9
+ * A role describing the region.
10
+ */
11
+ export type Role = "c2pa.areaOfInterest" | "c2pa.cropped" | "c2pa.edited" | "c2pa.placed" | "c2pa.redacted" | "c2pa.subjectArea" | "c2pa.deleted" | "c2pa.styled" | "c2pa.watermarked";
12
+ /**
13
+ * Assertions in C2PA can be stored in several formats
14
+ */
15
+ export type ManifestAssertionKind = "Cbor" | "Json" | "Binary" | "Uri";
16
+ /**
17
+ * Describes the digital signature algorithms allowed by the C2PA spec.
18
+ *
19
+ * Per [§13.2, “Digital Signatures”]:
20
+ *
21
+ * > All digital signatures applied as per the technical requirements of this
22
+ * > specification shall be generated using one of the digital signature
23
+ * > algorithms and key types listed as described in this section.
24
+ *
25
+ * [§13.2, “Digital Signatures”]: https://spec.c2pa.org/specifications/specifications/2.3/specs/C2PA_Specification.html#_digital_signatures
26
+ */
27
+ export type SigningAlg = "Es256" | "Es384" | "Es512" | "Ps256" | "Ps384" | "Ps512" | "Ed25519";
28
+ /**
29
+ * Represents the levels of assurance a manifest store achives when evaluated against the C2PA
30
+ * specifications structural, cryptographic, and trust requirements.
31
+ *
32
+ * See [Validation states - C2PA Technical Specification](https://spec.c2pa.org/specifications/specifications/2.3/specs/C2PA_Specification.html#_validation_states).
33
+ */
34
+ export type ValidationState = "Invalid" | "Valid" | "Trusted";
35
+ /**
36
+ * Use a Reader to read and validate a manifest store.
37
+ */
38
+ export interface Reader {
39
+ /**
40
+ * A label for the active (most recent) manifest in the store
41
+ */
42
+ active_manifest?: string | null;
43
+ /**
44
+ * A HashMap of Manifests
45
+ */
46
+ manifests?: {
47
+ [k: string]: Manifest;
48
+ };
49
+ /**
50
+ * ValidationStatus generated when loading the ManifestStore from an asset
51
+ */
52
+ validation_status?: ValidationStatus[] | null;
53
+ /**
54
+ * ValidationStatus generated when loading the ManifestStore from an asset
55
+ */
56
+ validation_results?: ValidationResults | null;
57
+ /**
58
+ * The validation state of the manifest store
59
+ */
60
+ validation_state?: ValidationState | null;
61
+ [k: string]: unknown;
62
+ }
63
+ /**
64
+ * A Manifest represents all the information in a c2pa manifest
65
+ */
66
+ export interface Manifest {
67
+ /**
68
+ * Optional prefix added to the generated Manifest label.
69
+ * This is typically an internet domain name for the vendor (i.e. `adobe`).
70
+ */
71
+ vendor?: string | null;
72
+ /**
73
+ * A User Agent formatted string identifying the software/hardware/system produced this claim
74
+ * Spaces are not allowed in names, versions can be specified with product/1.0 syntax.
75
+ */
76
+ claim_generator?: string | null;
77
+ /**
78
+ * A list of claim generator info data identifying the software/hardware/system produced this claim.
79
+ */
80
+ claim_generator_info?: ClaimGeneratorInfo[] | null;
81
+ /**
82
+ * A list of user metadata for this claim.
83
+ */
84
+ metadata?: AssertionMetadata[] | null;
85
+ /**
86
+ * A human-readable title, generally source filename.
87
+ */
88
+ title?: string | null;
89
+ /**
90
+ * The format of the source file as a MIME type.
91
+ */
92
+ format?: string | null;
93
+ /**
94
+ * Instance ID from `xmpMM:InstanceID` in XMP metadata.
95
+ */
96
+ instance_id?: string;
97
+ thumbnail?: ResourceRef | null;
98
+ /**
99
+ * A List of ingredients
100
+ */
101
+ ingredients?: Ingredient[];
102
+ /**
103
+ * A List of verified credentials
104
+ */
105
+ credentials?: unknown[] | null;
106
+ /**
107
+ * A list of assertions
108
+ */
109
+ assertions?: ManifestAssertion[];
110
+ /**
111
+ * A list of redactions - URIs to a redacted assertions
112
+ */
113
+ redactions?: string[] | null;
114
+ /**
115
+ * Signature data (only used for reporting)
116
+ */
117
+ signature_info?: SignatureInfo | null;
118
+ label?: string | null;
119
+ /**
120
+ * The version of the claim, parsed from the claim label.
121
+ *
122
+ * For example:
123
+ * - `c2pa.claim.v2` -> 2
124
+ * - `c2pa.claim` -> 1
125
+ */
126
+ claim_version?: number | null;
127
+ [k: string]: unknown;
128
+ }
129
+ /**
130
+ * Description of the claim generator, or the software used in generating the claim.
131
+ *
132
+ * This structure is also used for actions softwareAgent
133
+ */
134
+ export interface ClaimGeneratorInfo {
135
+ /**
136
+ * A human readable string naming the claim_generator
137
+ */
138
+ name: string;
139
+ /**
140
+ * A human readable string of the product's version
141
+ */
142
+ version?: string | null;
143
+ /**
144
+ * hashed URI to the icon (either embedded or remote)
145
+ */
146
+ icon?: UriOrResource | null;
147
+ /**
148
+ * A human readable string of the OS the claim generator is running on
149
+ */
150
+ operating_system?: string | null;
151
+ [k: string]: unknown;
152
+ }
153
+ /**
154
+ * A reference to a resource to be used in JSON serialization.
155
+ *
156
+ * The underlying data can be read as a stream via [`Reader::resource_to_stream`][crate::Reader::resource_to_stream].
157
+ */
158
+ export interface ResourceRef {
159
+ /**
160
+ * The mime type of the referenced resource.
161
+ */
162
+ format: string;
163
+ /**
164
+ * A URI that identifies the resource as referenced from the manifest.
165
+ *
166
+ * This may be a JUMBF URI, a file path, a URL or any other string.
167
+ * Relative JUMBF URIs will be resolved with the manifest label.
168
+ * Relative file paths will be resolved with the base path if provided.
169
+ */
170
+ identifier: string;
171
+ /**
172
+ * More detailed data types as defined in the C2PA spec.
173
+ */
174
+ data_types?: AssetType[] | null;
175
+ /**
176
+ * The algorithm used to hash the resource (if applicable).
177
+ */
178
+ alg?: string | null;
179
+ /**
180
+ * The hash of the resource (if applicable).
181
+ */
182
+ hash?: string | null;
183
+ [k: string]: unknown;
184
+ }
185
+ export interface AssetType {
186
+ type: string;
187
+ version?: string | null;
188
+ [k: string]: unknown;
189
+ }
190
+ /**
191
+ * A `HashedUri` provides a reference to content available within the same
192
+ * manifest store.
193
+ *
194
+ * This is described in [URI References in the C2PA Technical
195
+ * Specification](https://spec.c2pa.org/specifications/specifications/2.3/specs/C2PA_Specification.html#_uri_references).
196
+ */
197
+ export interface HashedUri {
198
+ /**
199
+ * JUMBF URI reference
200
+ */
201
+ url: string;
202
+ /**
203
+ * A string identifying the cryptographic hash algorithm used to compute
204
+ * the hash
205
+ */
206
+ alg?: string | null;
207
+ /**
208
+ * Byte string containing the hash value
209
+ */
210
+ hash: number[];
211
+ [k: string]: unknown;
212
+ }
213
+ /**
214
+ * The AssertionMetadata structure can be used as part of other assertions or on its own to reference others
215
+ */
216
+ export interface AssertionMetadata {
217
+ reviewRatings?: ReviewRating[] | null;
218
+ dateTime?: DateT | null;
219
+ reference?: HashedUri | null;
220
+ dataSource?: DataSource | null;
221
+ localizations?: {
222
+ [k: string]: {
223
+ [k: string]: string;
224
+ };
225
+ }[] | null;
226
+ regionOfInterest?: RegionOfInterest | null;
227
+ [k: string]: unknown;
228
+ }
229
+ /**
230
+ * A rating on an Assertion.
231
+ *
232
+ * See [C2PA Specification - Review Ratings](https://spec.c2pa.org/specifications/specifications/2.3/specs/C2PA_Specification.html#_review_ratings).
233
+ */
234
+ export interface ReviewRating {
235
+ explanation: string;
236
+ code?: string | null;
237
+ value: number;
238
+ [k: string]: unknown;
239
+ }
240
+ /**
241
+ * A description of the source for assertion data
242
+ */
243
+ export interface DataSource {
244
+ /**
245
+ * A value from among the enumerated list indicating the source of the assertion.
246
+ */
247
+ type: string;
248
+ /**
249
+ * A human-readable string giving details about the source of the assertion data.
250
+ */
251
+ details?: string | null;
252
+ /**
253
+ * A list of [`Actor`]s associated with this source.
254
+ */
255
+ actors?: Actor[] | null;
256
+ [k: string]: unknown;
257
+ }
258
+ /**
259
+ * Identifies a person responsible for an action.
260
+ */
261
+ export interface Actor {
262
+ /**
263
+ * An identifier for a human actor, used when the "type" is `humanEntry.identified`.
264
+ */
265
+ identifier?: string | null;
266
+ /**
267
+ * List of references to W3C Verifiable Credentials.
268
+ */
269
+ credentials?: HashedUri[] | null;
270
+ [k: string]: unknown;
271
+ }
272
+ /**
273
+ * A region of interest within an asset describing the change.
274
+ *
275
+ * This struct can be used from [`Action::changes`][crate::assertions::Action::changes],
276
+ * [`AssertionMetadata::region_of_interest`][crate::assertions::AssertionMetadata::region_of_interest], or
277
+ * [`SoftBindingScope::region`][crate::assertions::soft_binding::SoftBindingScope::region].
278
+ */
279
+ export interface RegionOfInterest {
280
+ /**
281
+ * A range describing the region of interest for the specific asset.
282
+ */
283
+ region: Range[];
284
+ /**
285
+ * A free-text string representing a human-readable name for the region which might be used in a user interface.
286
+ */
287
+ name?: string | null;
288
+ /**
289
+ * A free-text string representing a machine-readable, unique to this assertion, identifier for the region.
290
+ */
291
+ identifier?: string | null;
292
+ /**
293
+ * A value from a controlled vocabulary such as <https://cv.iptc.org/newscodes/imageregiontype/> or an entity-specific
294
+ * value (e.g., com.litware.newType) that represents the type of thing(s) depicted by a region.
295
+ *
296
+ * Note this field serializes/deserializes into the name `type`.
297
+ */
298
+ type?: string | null;
299
+ /**
300
+ * A value from our controlled vocabulary or an entity-specific value (e.g., com.litware.coolArea) that represents
301
+ * the role of a region among other regions.
302
+ */
303
+ role?: Role | null;
304
+ /**
305
+ * A free-text string.
306
+ */
307
+ description?: string | null;
308
+ /**
309
+ * Additional information about the asset.
310
+ */
311
+ metadata?: AssertionMetadata | null;
312
+ [k: string]: unknown;
313
+ }
314
+ /**
315
+ * A spatial, temporal, frame, or textual range describing the region of interest.
316
+ */
317
+ export interface Range {
318
+ /**
319
+ * The type of range of interest.
320
+ */
321
+ type: "spatial" | "temporal" | "frame" | "textual" | "identified";
322
+ /**
323
+ * A spatial range.
324
+ */
325
+ shape?: Shape | null;
326
+ /**
327
+ * A temporal range.
328
+ */
329
+ time?: Time | null;
330
+ /**
331
+ * A frame range.
332
+ */
333
+ frame?: Frame | null;
334
+ /**
335
+ * A textual range.
336
+ */
337
+ text?: Text | null;
338
+ /**
339
+ * A item identifier.
340
+ */
341
+ item?: Item | null;
342
+ [k: string]: unknown;
343
+ }
344
+ /**
345
+ * A spatial range representing rectangle, circle, or a polygon.
346
+ */
347
+ export interface Shape {
348
+ /**
349
+ * The type of shape.
350
+ */
351
+ type: "rectangle" | "circle" | "polygon";
352
+ /**
353
+ * The type of unit for the shape range.
354
+ */
355
+ unit: "pixel" | "percent";
356
+ origin: Coordinate;
357
+ /**
358
+ * The width for rectangles or diameter for circles.
359
+ *
360
+ * This field can be ignored for polygons.
361
+ */
362
+ width?: number | null;
363
+ /**
364
+ * The height of a rectnagle.
365
+ *
366
+ * This field can be ignored for circles and polygons.
367
+ */
368
+ height?: number | null;
369
+ /**
370
+ * If the range is inside the shape.
371
+ *
372
+ * The default value is true.
373
+ */
374
+ inside?: boolean | null;
375
+ /**
376
+ * The vertices of the polygon.
377
+ *
378
+ * This field can be ignored for rectangles and circles.
379
+ */
380
+ vertices?: Coordinate1[] | null;
381
+ [k: string]: unknown;
382
+ }
383
+ /**
384
+ * THe origin of the coordinate in the shape.
385
+ */
386
+ export interface Coordinate {
387
+ /**
388
+ * The coordinate along the x-axis.
389
+ */
390
+ x: number;
391
+ /**
392
+ * The coordinate along the y-axis.
393
+ */
394
+ y: number;
395
+ [k: string]: unknown;
396
+ }
397
+ /**
398
+ * An x, y coordinate used for specifying vertices in polygons.
399
+ */
400
+ export interface Coordinate1 {
401
+ /**
402
+ * The coordinate along the x-axis.
403
+ */
404
+ x: number;
405
+ /**
406
+ * The coordinate along the y-axis.
407
+ */
408
+ y: number;
409
+ [k: string]: unknown;
410
+ }
411
+ /**
412
+ * A temporal range representing a starting time to an ending time.
413
+ */
414
+ export interface Time {
415
+ /**
416
+ * The type of time.
417
+ */
418
+ type?: "npt";
419
+ /**
420
+ * The start time or the start of the asset if not present.
421
+ */
422
+ start?: string | null;
423
+ /**
424
+ * The end time or the end of the asset if not present.
425
+ */
426
+ end?: string | null;
427
+ [k: string]: unknown;
428
+ }
429
+ /**
430
+ * A frame range representing starting and ending frames or pages.
431
+ *
432
+ * If both `start` and `end` are missing, the frame will span the entire asset.
433
+ */
434
+ export interface Frame {
435
+ /**
436
+ * The start of the frame or the end of the asset if not present.
437
+ *
438
+ * The first frame/page starts at 0.
439
+ */
440
+ start?: number | null;
441
+ /**
442
+ * The end of the frame inclusive or the end of the asset if not present.
443
+ */
444
+ end?: number | null;
445
+ [k: string]: unknown;
446
+ }
447
+ /**
448
+ * A textual range representing multiple (possibly discontinuous) ranges of text.
449
+ */
450
+ export interface Text {
451
+ /**
452
+ * The ranges of text to select.
453
+ */
454
+ selectors: TextSelectorRange[];
455
+ [k: string]: unknown;
456
+ }
457
+ /**
458
+ * One or two [`TextSelector`][TextSelector] identifiying the range to select.
459
+ */
460
+ export interface TextSelectorRange {
461
+ selector: TextSelector;
462
+ /**
463
+ * The end of the text range.
464
+ */
465
+ end?: TextSelector1 | null;
466
+ [k: string]: unknown;
467
+ }
468
+ /**
469
+ * The start (or entire) text range.
470
+ */
471
+ export interface TextSelector {
472
+ /**
473
+ * Fragment identifier as per RFC3023 (XML) or ISO 32000-2 (PDF), Annex O.
474
+ */
475
+ fragment: string;
476
+ /**
477
+ * The start character offset or the start of the fragment if not present.
478
+ */
479
+ start?: number | null;
480
+ /**
481
+ * The end character offset or the end of the fragment if not present.
482
+ */
483
+ end?: number | null;
484
+ [k: string]: unknown;
485
+ }
486
+ /**
487
+ * Selects a range of text via a fragment identifier.
488
+ *
489
+ * This is modeled after the W3C Web Annotation selector model.
490
+ */
491
+ export interface TextSelector1 {
492
+ /**
493
+ * Fragment identifier as per RFC3023 (XML) or ISO 32000-2 (PDF), Annex O.
494
+ */
495
+ fragment: string;
496
+ /**
497
+ * The start character offset or the start of the fragment if not present.
498
+ */
499
+ start?: number | null;
500
+ /**
501
+ * The end character offset or the end of the fragment if not present.
502
+ */
503
+ end?: number | null;
504
+ [k: string]: unknown;
505
+ }
506
+ /**
507
+ * Description of the boundaries of an identified range.
508
+ */
509
+ export interface Item {
510
+ /**
511
+ * The container-specific term used to identify items, such as "track_id" for MP4 or "item_ID" for HEIF.
512
+ */
513
+ identifier: string;
514
+ /**
515
+ * The value of the identifier, e.g. a value of "2" for an identifier of "track_id" would imply track 2 of the asset.
516
+ */
517
+ value: string;
518
+ [k: string]: unknown;
519
+ }
520
+ /**
521
+ * An `Ingredient` is any external asset that has been used in the creation of an asset.
522
+ */
523
+ export interface Ingredient {
524
+ /**
525
+ * A human-readable title, generally source filename.
526
+ */
527
+ title?: string | null;
528
+ /**
529
+ * The format of the source file as a MIME type.
530
+ */
531
+ format?: string | null;
532
+ /**
533
+ * Document ID from `xmpMM:DocumentID` in XMP metadata.
534
+ */
535
+ document_id?: string | null;
536
+ /**
537
+ * Instance ID from `xmpMM:InstanceID` in XMP metadata.
538
+ */
539
+ instance_id?: string | null;
540
+ /**
541
+ * URI from `dcterms:provenance` in XMP metadata.
542
+ */
543
+ provenance?: string | null;
544
+ /**
545
+ * A thumbnail image capturing the visual state at the time of import.
546
+ *
547
+ * A tuple of thumbnail MIME format (for example `image/jpeg`) and binary bits of the image.
548
+ */
549
+ thumbnail?: ResourceRef | null;
550
+ /**
551
+ * An optional hash of the asset to prevent duplicates.
552
+ */
553
+ hash?: string | null;
554
+ /**
555
+ * Set to `ParentOf` if this is the parent ingredient.
556
+ *
557
+ * There can only be one parent ingredient in the ingredients.
558
+ */
559
+ relationship?: "parentOf" | "componentOf" | "inputTo";
560
+ /**
561
+ * The active manifest label (if one exists).
562
+ *
563
+ * If this ingredient has a [`ManifestStore`],
564
+ * this will hold the label of the active [`Manifest`].
565
+ *
566
+ * [`Manifest`]: crate::Manifest
567
+ * [`ManifestStore`]: crate::ManifestStore
568
+ */
569
+ active_manifest?: string | null;
570
+ /**
571
+ * Validation status (Ingredient v1 & v2)
572
+ */
573
+ validation_status?: ValidationStatus[] | null;
574
+ /**
575
+ * Validation results (Ingredient.V3)
576
+ */
577
+ validation_results?: ValidationResults | null;
578
+ /**
579
+ * A reference to the actual data of the ingredient.
580
+ */
581
+ data?: ResourceRef | null;
582
+ /**
583
+ * Additional description of the ingredient.
584
+ */
585
+ description?: string | null;
586
+ /**
587
+ * URI to an informational page about the ingredient or its data.
588
+ */
589
+ informational_URI?: string | null;
590
+ /**
591
+ * Any additional [`Metadata`] as defined in the C2PA spec.
592
+ *
593
+ * [`Metadata`]: crate::Metadata
594
+ */
595
+ metadata?: AssertionMetadata | null;
596
+ /**
597
+ * Additional information about the data's type to the ingredient V2 structure.
598
+ */
599
+ data_types?: AssetType[] | null;
600
+ /**
601
+ * A [`ManifestStore`] from the source asset extracted as a binary C2PA blob.
602
+ *
603
+ * [`ManifestStore`]: crate::ManifestStore
604
+ */
605
+ manifest_data?: ResourceRef | null;
606
+ /**
607
+ * The ingredient's label as assigned in the manifest.
608
+ */
609
+ label?: string | null;
610
+ ocsp_responses?: ResourceRef[] | null;
611
+ [k: string]: unknown;
612
+ }
613
+ /**
614
+ * A `ValidationStatus` struct describes the validation status of a
615
+ * specific part of a manifest.
616
+ *
617
+ * See [Existing Manifests - C2PA Technical Specification](https://spec.c2pa.org/specifications/specifications/2.3/specs/C2PA_Specification.html#_existing_manifests).
618
+ */
619
+ export interface ValidationStatus {
620
+ code: string;
621
+ url?: string | null;
622
+ explanation?: string | null;
623
+ success?: boolean | null;
624
+ [k: string]: unknown;
625
+ }
626
+ /**
627
+ * A map of validation results for a manifest store.
628
+ *
629
+ * The map contains the validation results for the active manifest and any ingredient deltas.
630
+ * It is normal for there to be many
631
+ */
632
+ export interface ValidationResults {
633
+ /**
634
+ * Validation status codes for the ingredient's active manifest. Present if ingredient is a C2PA
635
+ * asset. Not present if the ingredient is not a C2PA asset.
636
+ */
637
+ activeManifest?: StatusCodes | null;
638
+ /**
639
+ * List of any changes/deltas between the current and previous validation results for each ingredient's
640
+ * manifest. Present if the the ingredient is a C2PA asset.
641
+ */
642
+ ingredientDeltas?: IngredientDeltaValidationResult[] | null;
643
+ [k: string]: unknown;
644
+ }
645
+ /**
646
+ * Contains a set of success, informational, and failure validation status codes.
647
+ */
648
+ export interface StatusCodes {
649
+ /**
650
+ * An array of validation success codes. May be empty.
651
+ */
652
+ success: ValidationStatus[];
653
+ /**
654
+ * An array of validation informational codes. May be empty.
655
+ */
656
+ informational: ValidationStatus[];
657
+ failure: ValidationStatus[];
658
+ [k: string]: unknown;
659
+ }
660
+ /**
661
+ * Represents any changes or deltas between the current and previous validation results for an ingredient's manifest.
662
+ */
663
+ export interface IngredientDeltaValidationResult {
664
+ /**
665
+ * JUMBF URI reference to the ingredient assertion
666
+ */
667
+ ingredientAssertionURI: string;
668
+ validationDeltas: StatusCodes1;
669
+ [k: string]: unknown;
670
+ }
671
+ /**
672
+ * Contains a set of success, informational, and failure validation status codes.
673
+ */
674
+ export interface StatusCodes1 {
675
+ /**
676
+ * An array of validation success codes. May be empty.
677
+ */
678
+ success: ValidationStatus[];
679
+ /**
680
+ * An array of validation informational codes. May be empty.
681
+ */
682
+ informational: ValidationStatus[];
683
+ failure: ValidationStatus[];
684
+ [k: string]: unknown;
685
+ }
686
+ /**
687
+ * A labeled container for an Assertion value in a Manifest
688
+ */
689
+ export interface ManifestAssertion {
690
+ /**
691
+ * An assertion label in reverse domain format
692
+ */
693
+ label: string;
694
+ data: unknown;
695
+ /**
696
+ * There can be more than one assertion for any label
697
+ */
698
+ instance?: number | null;
699
+ /**
700
+ * The [ManifestAssertionKind] for this assertion (as stored in c2pa content)
701
+ */
702
+ kind?: ManifestAssertionKind | null;
703
+ /**
704
+ * True if this assertion is attributed to the signer
705
+ * This maps to a created vs a gathered assertion. (defaults to false)
706
+ */
707
+ created?: boolean;
708
+ [k: string]: unknown;
709
+ }
710
+ /**
711
+ * Holds information about a signature
712
+ */
713
+ export interface SignatureInfo {
714
+ /**
715
+ * Human-readable issuing authority for this signature.
716
+ */
717
+ alg?: SigningAlg | null;
718
+ /**
719
+ * Human-readable issuing authority for this signature.
720
+ */
721
+ issuer?: string | null;
722
+ /**
723
+ * Human-readable for common name of this certificate.
724
+ */
725
+ common_name?: string | null;
726
+ /**
727
+ * The serial number of the certificate.
728
+ */
729
+ cert_serial_number?: string | null;
730
+ /**
731
+ * The time the signature was created.
732
+ */
733
+ time?: string | null;
734
+ /**
735
+ * Revocation status of the certificate.
736
+ */
737
+ revocation_status?: boolean | null;
738
+ [k: string]: unknown;
739
+ }
740
+ //# sourceMappingURL=ManifestStore.d.ts.map