{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-sitewise/refs/heads/main/json-schema/iot-sitewise-create-portal-response-schema.json", "title": "CreatePortalResponse", "description": "CreatePortalResponse schema", "type": "object", "properties": { "portalId": { "allOf": [ { "$ref": "#/components/schemas/ID" }, { "description": "The ID of the created portal." } ] }, "portalArn": { "allOf": [ { "$ref": "#/components/schemas/ARN" }, { "description": "
The ARN of the portal, which has the following format.
arn:${Partition}:iotsitewise:${Region}:${Account}:portal/${PortalId}
CREATING after successfully calling this operation) and any error message."
}
]
},
"ssoApplicationId": {
"allOf": [
{
"$ref": "#/components/schemas/SSOApplicationId"
},
{
"description": "The associated IAM Identity Center application ID, if the portal uses IAM Identity Center."
}
]
}
},
"required": [
"portalId",
"portalArn",
"portalStartUrl",
"portalStatus",
"ssoApplicationId"
]
}