{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$comment": "OAuth2",
  "properties": {
    "apiVersion": {
      "title": "API Version",
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ],
      "placeholder": "v1.0",
      "description": "Microsoft Graph api version",
      "minLength": 1,
      "examples": ["v1.0", "beta"]
    },
    "access_token": {
      "title": "Access Token",
      "type": "string",
      "description": "Your Microsoft Graph access token",
      "writeOnly": true,
      "minLength": 1,
      "examples": ["eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiIsIng1dCI6IjlGWERwYmZNRl"]
    }
  },
  "type": "object",
  "additionalProperties": true,
  "required": ["access_token"]
}
