# `PolarExpress.Schemas.ProductMediaFileCreate`
[🔗](https://github.com/jeffhuen/polar_express/blob/main/lib/polar_express/schemas/product_media_file_create.ex#L2)

ProductMediaFileCreate

Schema to create a file to be used as a product media file.

# `t`

```elixir
@type t() :: %PolarExpress.Schemas.ProductMediaFileCreate{
  checksum_sha256_base64: String.t() | nil,
  mime_type: String.t() | nil,
  name: String.t() | nil,
  organization_id: String.t() | nil,
  service: String.t() | nil,
  size: integer() | nil,
  upload: PolarExpress.Schemas.S3FileCreateMultipart.t() | nil,
  version: String.t() | nil
}
```

* `checksum_sha256_base64` - Nullable.
* `mime_type` - MIME type of the file. Only images are supported for this type of file.
* `name`
* `organization_id` - Nullable.
* `service`
* `size` - Size of the file. A maximum of 10 MB is allowed for this type of file.
* `upload`
* `version` - Nullable.

# `schema_name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
