Auth0 · Schema

ClientMobileiOS

iOS native app configuration.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
team_id string Identifier assigned to the Apple account that signs and uploads the app to the store.
app_bundle_identifier string Assigned by developer to the app as its unique identifier inside the store. Usually this is a reverse domain plus the app name, e.g. `com.you.MyApp`.
View JSON Schema on GitHub

JSON Schema

auth0-clientmobileios-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ClientMobileiOS",
  "title": "ClientMobileiOS",
  "type": "object",
  "description": "iOS native app configuration.",
  "additionalProperties": true,
  "properties": {
    "team_id": {
      "type": "string",
      "description": "Identifier assigned to the Apple account that signs and uploads the app to the store.",
      "default": ""
    },
    "app_bundle_identifier": {
      "type": "string",
      "description": "Assigned by developer to the app as its unique identifier inside the store. Usually this is a reverse domain plus the app name, e.g. `com.you.MyApp`.",
      "default": ""
    }
  }
}