Skip to content

Commit

Permalink
fix(sdk): Dont require mimetype in manifest schema (#1777)
Browse files Browse the repository at this point in the history
### Proposed Changes

* mimetype is not required by the spec, dont require it in the manifest
schema

### Checklist

- [ ] I have added or updated unit tests
- [ ] I have added or updated integration tests (if appropriate)
- [ ] I have added or updated documentation

### Testing Instructions
  • Loading branch information
elizabethhealy authored Nov 22, 2024
1 parent 07a1dbd commit 98c5899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/schema/manifest.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"type": "string"
}
},
"required": ["type", "url", "protocol", "isEncrypted","mimeType"]
"required": ["type", "url", "protocol", "isEncrypted"]
},
"encryptionInformation": {
"type": "object",
Expand Down

0 comments on commit 98c5899

Please sign in to comment.