arrow-left

All pages
gitbookPowered by GitBook
1 of 9

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

Default Meta Review Form

hashtag
API V1 JSON

{
  "metareview": {
      "order": 1,
      "value-regex": "[\\S\\s]{1,5000}",
      "description": "Please provide an evaluation of the quality, clarity, originality and significance of this work, including a list of its pros and cons. Your comment or reply (max 5000 characters). Add formatting using Markdown and formulas using LaTeX. For more information see https://openreview.net/faq",
      "required": true,
      "markdown": true
  },
  "recommendation": {
      "order": 2,
      "value-dropdown": [
          "Accept (Oral)",
          "Accept (Poster)",
          "Reject"
      ],
      "required": true
  },
  "confidence": {
      "order": 3,
      "value-radio": [
          "5: The area chair is absolutely certain",
          "4: The area chair is confident but not absolutely certain",
          "3: The area chair is somewhat confident",
          "2: The area chair is not sure",
          "1: The area chair's evaluation is an educated guess"
      ],
      "required": true
  }
}

hashtag
API V2 JSON

hashtag
Preview

{
  "metareview": {
    "value": {
      "param": {
        "type": "string",
        "regex": "[\\S\\s]{1,5000}",
        "markdown": true
      }
    },
    "order": 1,
    "description": "Please provide an evaluation of the quality, clarity, originality and significance of this work, including a list of its pros and cons. Your comment or reply (max 5000 characters). Add formatting using Markdown and formulas using LaTeX. For more information see https://openreview.net/faq"
  },
  "recommendation": {
    "value": {
      "param": {
        "type": "string",
        "enum": [
          "Accept (Oral)",
          "Accept (Poster)",
          "Reject"
        ],
        "type": "select"
      }
    },
    "order": 2
  },
  "confidence": {
    "value": {
      "param": {
        "type": "string",
        "enum": [
          "5: The area chair is absolutely certain",
          "4: The area chair is confident but not absolutely certain",
          "3: The area chair is somewhat confident",
          "2: The area chair is not sure",
          "1: The area chair's evaluation is an educated guess"
        ]
      }
    },
    "order": 3
  }
}

Default Forms

Default Submission Form

hashtag
API V1 JSON

hashtag
API V2 JSON

hashtag
Preview

{
  "title": {
    "description": "Title of paper. Add TeX formulas using the following formats: $In-line Formula$ or $$Block Formula$$",
    "order": 1,
    "value-regex": ".{1,250}",
    "required": true
  },
  "authors": {
      "description": "Comma separated list of author names.",
      "order": 2,
      "values-regex": "[^;,\\n]+(,[^,\\n]+)*",
      "required": true,
      "hidden": true
  },
  "authorids": {
      "description": "Search author profile by first, middle and last name or email address. If the profile is not found, you can add the author by completing first, middle, and last names as well as author email address.",
      "order": 3,
      "values-regex": "~.*|([a-z0-9_\\-\\.]{1,}@[a-z0-9_\\-\\.]{2,}\\.[a-z]{2,},){0,}([a-z0-9_\\-\\.]{1,}@[a-z0-9_\\-\\.]{2,}\\.[a-z]{2,})",
      "required": true
  },
  "keywords": {
      "description": "Comma separated list of keywords.",
      "order": 6,
      "values-regex": "(^$)|[^;,\\n]+(,[^,\\n]+)*"
  },
  "TL;DR": {
      "description": "\"Too Long; Didn't Read\": a short sentence describing your paper",
      "order": 7,
      "value-regex": "[^\\n]{0,250}",
      "required": false
  },
  "abstract": {
      "description": "Abstract of paper. Add TeX formulas using the following formats: $In-line Formula$ or $$Block Formula$$",
      "order": 8,
      "value-regex": "[\\S\\s]{1,5000}",
      "required": true
  },
  "pdf": {
      "description": "Upload a PDF file that ends with .pdf",
      "order": 9,
      "value-file": {
          "fileTypes": [
              "pdf"
          ],
          "size": 50
      },
      "required": true
  }
}
{
  "title": {
    "value": {
      "param": {
        "type": "string",
        "regex": ".{1,250}"
      }
    },
    "description": "Title of paper. Add TeX formulas using the following formats: $In-line Formula$ or $$Block Formula$$",
    "order": 1
  },
  "authors": {
    "value": {
      "param": {
        "type": "string[]",
        "regex": "[^;,\\n]+(,[^,\\n]+)*",
        "hidden": true
      }
    },
    "description": "Comma separated list of author names.",
    "order": 2
  },
  "authorids": {
    "value": {
      "param": {
        "type": "group[]",
        "regex": "~.*|([a-z0-9_\\-\\.]{1,}@[a-z0-9_\\-\\.]{2,}\\.[a-z]{2,},){0,}([a-z0-9_\\-\\.]{1,}@[a-z0-9_\\-\\.]{2,}\\.[a-z]{2,})"
      }
    },
    "description": "Search author profile by first, middle and last name or email address. If the profile is not found, you can add the author by completing first, middle, and last names as well as author email address.",
    "order": 3
  },
  "keywords": {
    "value": {
      "param": {
        "type": "string",
        "regex": "(^$)|[^;,\\n]+(,[^,\\n]+)*"
        "optional": true
      }
    },
    "description": "Comma separated list of keywords.",
    "order": 6
  },
  "TL;DR": {
    "value": {
      "param": {
        "type": "string",
        "regex": "[^\\n]{0,250}",
        "optional": true
      }
    },
    "description": "\"Too Long; Didn't Read\": a short sentence describing your paper",
    "order": 7
  },
  "abstract": {
    "value": {
      "param": {
        "type": "string",
        "regex": "[\\S\\s]{1,5000}"
      }
    },
    "description": "Abstract of paper. Add TeX formulas using the following formats: $In-line Formula$ or $$Block Formula$$",
    "order": 8
  },
  "pdf": {
    "value": {
      "param": {
        "type": "file",
        "extensions": [ "pdf" ],
        "maxSize": 50
      }
    },
    "description": "Upload a PDF file that ends with .pdf",
    "order": 9
  }
}

Default Decision Form

hashtag
API V1 JSON

{
  "title": {
      "order": 1,
      "required": true,
      "value": "Paper Decision"
  },
  "decision": {
      "order": 2,
      "required": true,
      "value-radio": [
          "Accept (Oral)",
          "Accept (Poster)",
          "Reject"
      ],
      "description": "Decision"
  },
  "comment": {
      "order": 3,
      "required": false,
      "value-regex": "[\\S\\s]{0,5000}",
      "description": ""
  }
}

hashtag
API V2 JSON

Preview

Default Registration Form

API V2 JSON

{
    "profile_confirmed": {
        "description": "In order to avoid conflicts of interest in reviewing, we ask that all reviewers take a moment to update their OpenReview profiles (link in instructions above) with their latest information regarding email addresses, work history and professional relationships. Please confirm that your OpenReview profile is up-to-date by selecting 'Yes'".,
        "value": {
            "param": {
                "type": "string",
                "enum": ["Yes"],
                "input": "checkbox"
            }
        },
        "order": 1
    },
    "expertise_confirmed": {
        "description": "We will be using OpenReview's Expertise System as a factor in calculating paper-reviewer affinity scores. Please take a moment to ensure that your latest papers are visible at the Expertise Selection (link in instructions above). Please confirm finishing this step by selecting 'Yes'.",
        "value": {
            "param": {
                "type": "string",
                "enum": ["Yes"],
                "input": "checkbox"
            }
        },
        "order": 2
    }
}
{
  "title": {
    "order": 1,
    "value": "Paper Decision"
  },
  "decision": {
    "order": 2,
    "description": "Decision",
    "value": {
      "param": {
        "type": "string",
        "enum": [
          "Accept (Oral)",
          "Accept (Poster)",
          "Reject"
        ],
        "input": "select"
      }
    }
  },
  "comment": {
    "order": 3,
    "description": ""
    "value": {
      "param": {
        "type": "string",
        "regex": "[\\S\\s]{0,5000}",
        "optional": true
      }
    } 
  }
}

Default Review Form

hashtag
API V1 JSON

hashtag
API V2 JSON

hashtag
Preview

 {
  "title": {
      "order": 1,
      "value-regex": ".{0,500}",
      "description": "Brief summary of your review.",
      "required": true
  },
  "review": {
      "order": 2,
      "value-regex": "[\\S\\s]{1,200000}",
      "description": "Please provide an evaluation of the quality, clarity, originality and significance of this work, including a list of its pros and cons (max 200000 characters). Add formatting using Markdown and formulas using LaTeX. For more information see https://openreview.net/faq",
      "required": true,
      "markdown": true
  },
  "rating": {
      "order": 3,
      "value-dropdown": [
          "10: Top 5% of accepted papers, seminal paper",
          "9: Top 15% of accepted papers, strong accept",
          "8: Top 50% of accepted papers, clear accept",
          "7: Good paper, accept",
          "6: Marginally above acceptance threshold",
          "5: Marginally below acceptance threshold",
          "4: Ok but not good enough - rejection",
          "3: Clear rejection",
          "2: Strong rejection",
          "1: Trivial or wrong"
      ],
      "required": true
  },
  "confidence": {
      "order": 4,
      "value-radio": [
          "5: The reviewer is absolutely certain that the evaluation is correct and very familiar with the relevant literature",
          "4: The reviewer is confident but not absolutely certain that the evaluation is correct",
          "3: The reviewer is fairly confident that the evaluation is correct",
          "2: The reviewer is willing to defend the evaluation, but it is quite likely that the reviewer did not understand central parts of the paper",
          "1: The reviewer's evaluation is an educated guess"
      ],
      "required": true
  }
}
 {
  "title": {
    "value":
      "param": {
        "type": "string",
        "regex": ".{0,500}"
      }
    },
    "order": 1,
    "description": "Brief summary of your review."
  },
  "review": {
    "value": {
      "param": {
        "type": "string",
        "regex": "[\\S\\s]{1,200000}",
        "markdown": true
      }
    },  
    "order": 2,
    "description": "Please provide an evaluation of the quality, clarity, originality and significance of this work, including a list of its pros and cons (max 200000 characters). Add formatting using Markdown and formulas using LaTeX. For more information see https://openreview.net/faq"
  },
  "rating": {
    "value": {
      "param": {
        "type": "string",
        "enum": [
          "10: Top 5% of accepted papers, seminal paper",
          "9: Top 15% of accepted papers, strong accept",
          "8: Top 50% of accepted papers, clear accept",
          "7: Good paper, accept",
          "6: Marginally above acceptance threshold",
          "5: Marginally below acceptance threshold",
          "4: Ok but not good enough - rejection",
          "3: Clear rejection",
          "2: Strong rejection",
          "1: Trivial or wrong"
        ],
        "input": "select"
      }
    },
    "order": 3,
  },
  "confidence": {
    "value": {
      "param": {
        "type": "string",
        "enum": [
          "5: The reviewer is absolutely certain that the evaluation is correct and very familiar with the relevant literature",
          "4: The reviewer is confident but not absolutely certain that the evaluation is correct",
          "3: The reviewer is fairly confident that the evaluation is correct",
          "2: The reviewer is willing to defend the evaluation, but it is quite likely that the reviewer did not understand central parts of the paper",
          "1: The reviewer's evaluation is an educated guess"
        ],
        "input": "radio"
      }
    },
    "order": 4
  }
}
Review

Default Ethics Review Form

hashtag
API V1 JSON

{
    "recommendation": {
      "order": 1,
      "value-radio": [
        "1: No serious ethical issues",
        "2: Serious ethical issues that need to be addressed in the final version",
        "3: Paper should be rejected due to ethical issues"
      ],
      "description": "Please select your ethical recommendation",
      "required": true
    },
    "ethics_concerns": {
      "order": 2,
      "value-regex": "[\\S\\s]{1,200000}",
      "description": "Briefly summarize the ethics concerns.",
      "required": true
    }
  }

hashtag
API V2 JSON

hashtag
Preview

{
  "recommendation": {
    "order": 1,
    "description": "Please select your ethical recommendation",
    "value": {
      "param": {
        "type": "string"
        "enum": [
          "1: No serious ethical issues",
          "2: Serious ethical issues that need to be addressed in the final version",
          "3: Paper should be rejected due to ethical issues"
        ],
        "input": "radio"
      }
    },
    "ethics_concerns": {
      "order": 2,
      "description": "Briefly summarize the ethics concerns.",
      "value": {
        "param": {
          "type": "string",
          "regex": "[\\S\\s]{1,200000}"
        }
      }
    }
  }

Default Decision Notification

Dear {{{{fullname}}}},

Thank you for submitting your paper, {submission_title}, to [venue short name]. We are delighted to inform you that your submission has been accepted. Congratulations! You can find the final reviews for your paper on the submission page in OpenReview at: {forum_url}

Best, [venue short name] Program Chairs

Default Comment Form

hashtag
API V1 JSON

{
  "title": {
      "order": 0,
      "value-regex": ".{1,500}",
      "description": "Brief summary of your comment.",
      "required": true
  },
  "comment": {
      "order": 1,
      "value-regex": "[\\S\\s]{1,5000}",
      "description": "Your comment or reply (max 5000 characters). Add formatting using Markdown and formulas using LaTeX. For more information see https://openreview.net/faq",
      "required": true,
      "markdown": true
  }
}

hashtag
API V2 JSON

hashtag
Preview

{
  "title": {
    "value": {
      "param": {
        "type": "string",
        "regex": ".{1,500}"
      }
    },
    "order": 0,
    "description": "Brief summary of your comment."
  },
  "comment": {
    "value": {
      "param": {
        "type": "string",
        "regex": "[\\S\\s]{1,5000}",
        "markdown": true
      }
    },
    "order": 1,
    "description": "Your comment or reply (max 5000 characters). Add formatting using Markdown and formulas using LaTeX. For more information see https://openreview.net/faq"
  }
}
Commen