bugsnag · Schema

ProjectCreate

Request body for creating a new project.

Properties

Name Type Description
name string The name of the project.
type string The platform type of the project (e.g., rails, js, android).
View JSON Schema on GitHub

JSON Schema

bugsnag-projectcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectCreate",
  "title": "ProjectCreate",
  "type": "object",
  "description": "Request body for creating a new project.",
  "required": [
    "name",
    "type"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the project."
    },
    "type": {
      "type": "string",
      "description": "The platform type of the project (e.g., rails, js, android)."
    }
  }
}