{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UploadTarget", "title": "UploadTarget", "type": "object", "properties": { "content_hash": { "type": "string" }, "url": { "type": "string" }, "fields": { "type": "object", "additionalProperties": { "type": "string" } } }, "required": [ "content_hash", "fields", "url" ] }