{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-get-register-account-status-response-schema.json", "title": "GetRegisterAccountStatusResponse", "description": "GetRegisterAccountStatusResponse schema", "type": "object", "properties": { "customerAccountId": { "allOf": [ { "$ref": "#/components/schemas/customerAccountId" }, { "description": " The unique ID of the Amazon Web Services account, provided at account creation. " } ] }, "accountStatus": { "allOf": [ { "$ref": "#/components/schemas/RegistrationStatus" }, { "description": "

The status of registering your account and resources. The status can be one of:

" } ] }, "timestreamRegistrationResponse": { "allOf": [ { "$ref": "#/components/schemas/TimestreamRegistrationResponse" }, { "description": " Information about the registered Amazon Timestream resources or errors, if any." } ] }, "iamRegistrationResponse": { "allOf": [ { "$ref": "#/components/schemas/IamRegistrationResponse" }, { "description": " Information about the registered IAM resources or errors, if any. " } ] }, "creationTime": { "allOf": [ { "$ref": "#/components/schemas/timestamp" }, { "description": " The time the account was registered, in seconds since epoch (January 1, 1970 at midnight UTC time). " } ] }, "lastModificationTime": { "allOf": [ { "$ref": "#/components/schemas/timestamp" }, { "description": " The time this registration was last updated, in seconds since epoch (January 1, 1970 at midnight UTC time). " } ] } }, "required": [ "customerAccountId", "accountStatus", "iamRegistrationResponse", "creationTime", "lastModificationTime" ] }