Assets.schema.d.ts 610 B

123456789101112131415161718192021222324252627282930
  1. /* tslint:disable */
  2. /**
  3. * This file was automatically generated by json-schema-to-typescript.
  4. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
  5. * and run json-schema-to-typescript to regenerate this file.
  6. */
  7. /**
  8. * List of assets to upload/reupload
  9. */
  10. export interface Assets {
  11. /**
  12. * Target bag id
  13. */
  14. bagId: string
  15. /**
  16. * List of assets to upload
  17. */
  18. assets: {
  19. /**
  20. * Already existing data object ID
  21. */
  22. objectId: string
  23. /**
  24. * Path to the content file (relative to input json file)
  25. */
  26. path: string
  27. }[]
  28. [k: string]: unknown
  29. }