{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/eidolon-resource/_shared/latest--GoogleJWTProcessor.json",
  "title": "GoogleJWTProcessor",
  "x-lintel": {
    "source": "https://www.eidolonai.com/json_schema/v1/schemas/AuthenticationProcessor/GoogleJWTProcessor.json",
    "sourceSha256": "2cf7d4b75c0a7f9cf4e423ccb8086dcddf15a8a55a7d7739fc3625f6b00ac865"
  },
  "type": "object",
  "properties": {
    "implementation": {
      "const": "GoogleJWTProcessor",
      "title": "Implementation"
    },
    "jwks_url": {
      "default": "https://www.googleapis.com/oauth2/v3/certs",
      "description": "The URL to fetch the JWKS from. Defaults to <https://www.googleapis.com/oauth2/v3/certs>",
      "title": "Jwks Url",
      "type": "string"
    },
    "audience": {
      "default": null,
      "description": "Your google client ID. Defaults to the environment variable GOOGLE_CLIENT_ID",
      "title": "Audience",
      "type": "string"
    },
    "issuer": {
      "default": "accounts.google.com",
      "description": "The issuer of the JWT. Defaults to accounts.google.com",
      "title": "Issuer",
      "type": "string"
    }
  },
  "additionalProperties": false,
  "required": [
    "implementation"
  ],
  "reference_details": {
    "clz": "eidolon_ai_sdk.security.google_auth.GoogleJWTProcessor",
    "groups": [
      "AuthenticationProcessor"
    ],
    "name": "GoogleJWTProcessor",
    "overrides": {}
  }
}
