Biogen · Schema

CreateApiKeyRequest

Request body for creating a new API key.

BiotechnologyHealthcareLife SciencesPharmaceuticalsNeurologyFortune 500

Properties

Name Type Description
name string Display name for the key.
description string Optional key description.
View JSON Schema on GitHub

JSON Schema

biogen-create-api-key-request-schema.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateApiKeyRequest",
  "type": "object",
  "description": "Request body for creating a new API key.",
  "properties": {
    "name": {
      "type": "string",
      "description": "Display name for the key.",
      "example": "Production Key"
    },
    "description": {
      "type": "string",
      "description": "Optional key description.",
      "example": "Key for production CCS-CRX integration"
    }
  },
  "required": [
    "name"
  ]
}