列挙値によってマップを作成
         先に作成したストラクチャーをマッピングし、MapValuesファンクションを使って列挙値をマッピングします。
    
        手順
タスクの結果
{
    "customers": [
        {
            "id": "abc-123",
            "name": "John Doe",
            "status": "Gold"
        },
        {
            "id": "def-456",
            "name": "Jane Smith",
            "status": "Platinum"
        },
        {
            "id": "ghi-789",
            "name": "Emily Stone",
            "status": "Silver"
        }
    ]
}