{
  "$id": "https://alwaysai.co/models-install-payload-schema.json",
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "title": "models_install_payload",
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "id": {
        "$ref": "https://alwaysai.co/common-schema.json#/$defs/modelId"
      },
      "version": {
        "type": "number"
      },
      "modelSignedUrl": {
        "type": "string"
      }
    },
    "required": ["id", "version", "modelSignedUrl"]
  }
}