Amazon IoT Core · Schema

GetPolicyVersionResponse

The output from the GetPolicyVersion operation.

Device ManagementIoTMQTTMessage Routing

Properties

Name Type Description
policyArn object
policyName object
policyDocument object
policyVersionId object
isDefaultVersion object
creationDate object
lastModifiedDate object
generationId object
View JSON Schema on GitHub

JSON Schema

iot-core-get-policy-version-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-core/refs/heads/main/json-schema/iot-core-get-policy-version-response-schema.json",
  "title": "GetPolicyVersionResponse",
  "description": "The output from the GetPolicyVersion operation.",
  "type": "object",
  "properties": {
    "policyArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyArn"
        },
        {
          "description": "The policy ARN."
        }
      ]
    },
    "policyName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyName"
        },
        {
          "description": "The policy name."
        }
      ]
    },
    "policyDocument": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyDocument"
        },
        {
          "description": "The JSON document that describes the policy."
        }
      ]
    },
    "policyVersionId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PolicyVersionId"
        },
        {
          "description": "The policy version ID."
        }
      ]
    },
    "isDefaultVersion": {
      "allOf": [
        {
          "$ref": "#/components/schemas/IsDefaultVersion"
        },
        {
          "description": "Specifies whether the policy version is the default."
        }
      ]
    },
    "creationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The date the policy was created."
        }
      ]
    },
    "lastModifiedDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DateType"
        },
        {
          "description": "The date the policy was last modified."
        }
      ]
    },
    "generationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GenerationId"
        },
        {
          "description": "The generation ID of the policy version."
        }
      ]
    }
  }
}