Amazon IoT Core · JSON Structure

Iot Core Create Provisioning Claim Response Structure

CreateProvisioningClaimResponse schema

Type: object Properties: 4
Device ManagementIoTMQTTMessage Routing

CreateProvisioningClaimResponse is a JSON Structure definition published by Amazon IoT Core, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

certificateId certificatePem keyPair expiration

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-structure/iot-core-create-provisioning-claim-response-structure.json",
  "name": "CreateProvisioningClaimResponse",
  "description": "CreateProvisioningClaimResponse schema",
  "type": "object",
  "properties": {
    "certificateId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificateId"
        },
        {
          "description": "The ID of the certificate."
        }
      ]
    },
    "certificatePem": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificatePem"
        },
        {
          "description": "The provisioning claim certificate."
        }
      ]
    },
    "keyPair": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyPair"
        },
        {
          "description": "The provisioning claim key pair."
        }
      ]
    },
    "expiration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The provisioning claim expiration time."
        }
      ]
    }
  }
}