Actions OIDC subject customization for a repository

Actions OIDC subject customization for a repository

APIs.ioEngineeringPlatform

Properties

Name Type Description
use_default boolean Whether to use the default template or not. If `true`, the `include_claim_keys` field is ignored.
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-repo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/oidc-custom-sub-repo",
  "title": "Actions OIDC subject customization for a repository",
  "description": "Actions OIDC subject customization for a repository",
  "type": "object",
  "properties": {
    "use_default": {
      "description": "Whether to use the default template or not. If `true`, the `include_claim_keys` field is ignored.",
      "type": "boolean"
    },
    "include_claim_keys": {
      "description": "Array of unique strings. Each claim key can only contain alphanumeric characters and underscores.",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "use_default"
  ]
}