{
  "type": "object",
  "additionalProperties": false,
  "required": [
    "intentPublicId",
    "provider",
    "uploadUrl",
    "httpMethod",
    "requiredHeaders",
    "expiresAt"
  ],
  "properties": {
    "intentPublicId": {
      "type": "string",
      "format": "uuid"
    },
    "provider": {
      "type": "string",
      "const": "OCI"
    },
    "uploadUrl": {
      "type": "string",
      "format": "uri"
    },
    "httpMethod": {
      "type": "string",
      "const": "PUT"
    },
    "requiredHeaders": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "expiresAt": {
      "type": "string",
      "format": "date-time"
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema"
}
