Ably · Schema

app_pkcs12

RealtimeWebSocketsPub/SubMessagingStreamingPush NotificationsChatLiveSync

Properties

Name Type Description
p12File string The `.p12` file containing the app's APNs information.
p12Pass string The password for the corresponding `.p12` file.
View JSON Schema on GitHub

JSON Schema

ably-app-pkcs12-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/app_pkcs12",
  "title": "app_pkcs12",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "p12File": {
      "type": "string",
      "format": "binary",
      "description": "The `.p12` file containing the app's APNs information.",
      "example": "example.p12"
    },
    "p12Pass": {
      "type": "string",
      "description": "The password for the corresponding `.p12` file.",
      "example": "secret"
    }
  },
  "required": [
    "p12File",
    "p12Pass"
  ]
}