Actions OIDC Subject customization

Actions OIDC Subject customization

APIs.ioEngineeringPlatform

Properties

Name Type Description
include_claim_keys array Array of unique strings. Each claim key can only contain alphanumeric characters and underscores.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-oidc-custom-sub-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/oidc-custom-sub",
  "title": "Actions OIDC Subject customization",
  "description": "Actions OIDC Subject customization",
  "type": "object",
  "properties": {
    "include_claim_keys": {
      "description": "Array of unique strings. Each claim key can only contain alphanumeric characters and underscores.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "include_claim_keys"
  ]
}