エンドツーエンドの注文データフィードとフルフィルメントの機械判読可能バージョン API の定義を使用して、クライアントのソースコードを生成し、 必要があります。これにより、ML モデルの開発により多くの時間を 必要なアプリケーション機能とビジネス ロジックです。
この例では、quicktype を使用します。 CLI を使用して使いやすいクライアント ライブラリを生成できます。
JSON スキーマをダウンロードする
コードの生成と検証には、こうした機械判読可能なバージョンのデータフィードと API が必要です。
コードを生成
Quicktype を使用すると、API が変更されたときにコードを再生成できるため、 影響を受けるアプリケーション コードを更新するだけです。QuickType は C++や Java、JavaScript、Python などのプログラミング言語。
JSON スキーマをサポートするその他のコード生成ツールを使用することもできます。 クライアント ライブラリを生成します。
Node パッケージ マネージャーを使用する (npm): プロジェクト ディレクトリに Quicktype をインストールします。 統合向けに構築しました
npm install quicktype
TypeScript
- エンドツーエンドのデータフィードを注文するためのクライアントのソースコードを生成します。
quicktype --lang typescript --src-lang schema inventory-v2-json-schema.json#top_level_definitions/ -o ./owg-inventory.ts
- フルフィルメント API のクライアント ソースコードを生成します。
quicktype --lang typescript --src-lang schema fulfillment-actions-json-schema.json#top_level_definitions/ -o ./owg-fulfillment.ts
- リアルタイム更新 API のクライアント ソースコードを生成します。
quicktype --lang typescript --src-lang schema realtime-updates-json-schema.json#top_level_definitions/ -o ./owg-realtime-updates.ts
- 生成されたファイルをワークスペースにコピーし、ビジネス ロジックを実装します。
使用と検証
エンティティを作成して JSON に変換する例:
import { Convert, Fee, OperationHours, Restaurant, Service, ServiceArea, ServiceHours, Menu, MenuSection, Availability, MenuItem, MenuItemOption, MenuItemOffer, FeeType, FeeTypeEnum, RestaurantType } from './owg-inventory'; const restaurant: Restaurant = { "@id": "McDonalds", "@type": RestaurantType.Restaurant, "addressCountry": "US", "addressLocality": "123 Local", "addressRegion": "Region", "name": "MacDonald's", "postalCode": "1234", "streetAddress": "123", "telephone": "+15552999983", "url": "https://example.com", "dateModified": new Date() } const fee: Fee = { "@id": "123", "@type": FeeTypeEnum.Fee, "priceCurrency": "US", "serviceId": "123", "feeType": FeeType.Delivery, "dateModified": new Date() } const restaurantJson: string = Convert.restaurantToJson(restaurant); const feeJson: string = Convert.feeToJson(fee);
Java
- エンドツーエンドのデータフィードを注文するためのクライアントのソースコードを生成します。
quicktype --lang java --src-lang schema inventory-v2-json-schema.json#top_level_definitions/ -o ./java/ --no-date-times --package com.example.inventory
- フルフィルメント API のクライアント ソースコードを生成します。
quicktype --lang java --src-lang schema fulfillment-actions-json-schema.json#top_level_definitions/ -o ./java/ --no-date-times --package com.example.fulfillment
- リアルタイム更新 API のクライアント ソースコードを生成します。
quicktype --lang java --src-lang schema realtime-updates-json-schema.json#top_level_definitions/ -o ./java/ --no-date-times --package com.example.realtime
- 生成されたファイルをワークスペースにコピーし、ビジネス ロジックを実装します。
使用と検証
エンティティを作成して JSON に変換する例:
package com.example; import com.example.inventory.Converter; import com.example.inventory.Fee; import com.example.inventory.FeeType; import com.example.inventory.Restaurant; import com.example.inventory.RestaurantType; public class FoodOrderingResponse { public static void main(String[] args) { Restaurant restaurant = new Restaurant(); restaurant.setId("MacDonalds"); restaurant.setType(RestaurantType.RESTAURANT); restaurant.setAddressCountry("US"); restaurant.setAddressLocality("123 Local"); restaurant.setAddressRegion("Region"); restaurant.setName("MacDonald's"); restaurant.setPostalCode("1234"); restaurant.setStreetAddress("123"); restaurant.setTelephone("+15552999983"); restaurant.setUrl("https://example.com"); restaurant.setDateModified("2022-09-19T13:10:00.000Z"); Fee fee = new Fee(); fee.setId("123"); fee.setType(FeeTypeEnum.FEE); fee.setPriceCurrency("US"); fee.setServiceId("123"); fee.setFeeType(FeeType.DELIVERY); fee.setDateModified("2022-09-19T13:13:10.000Z"); String restaurantJson = Converter.RestaurantToJsonString(restaurant); String feeJson = Converter.FeeToJsonString(fee); } }
JavaScript
- エンドツーエンドのデータフィードを注文するためのクライアントのソースコードを生成します。
quicktype --lang javascript --src-lang schema inventory-v2-json-schema.json#top_level_definitions/ -o owg-inventory.js
- フルフィルメント API のクライアント ソースコードを生成します。
quicktype --lang javascript --src-lang schema fulfillment-actions-json-schema.json#top_level_definitions/ -o owg-fulfillment.js
- リアルタイム更新 API のクライアント ソースコードを生成します。
quicktype --lang javascript --src-lang schema realtime-updates-json-schema.json#top_level_definitions/ -o owg-realtime-updates.js
- 生成されたファイルをワークスペースにコピーし、ビジネス ロジックを実装します。
使用と検証
エンティティを作成して JSON に変換する例:
// Converts JSON strings to/from your types // and asserts the results of JSON.parse at runtime const Convert = require("./owg-inventory"); const restaurantJson = Convert.restaurantToJson({ "@id": "McDonalds", "@type": 'Restaurant', "addressCountry": "US", "addressLocality": "123 Local", "addressRegion": "Region", "name": "MacDonald's", "postalCode": "1234", "streetAddress": "123", "telephone": "+15552999983", "url": "https://example.com", "dateModified": new Date() })); const restaurant = Convert.toRestaurant(restaurantJson);
Python
- エンドツーエンドのデータフィードを注文するためのクライアントのソースコードを生成します。
quicktype --lang python --src-lang schema inventory-v2-json-schema.json#top_level_definitions/ -o owg_inventory.py
- フルフィルメント API のクライアント ソースコードを生成します。
quicktype --lang python --src-lang schema fulfillment-actions-json-schema.json#top_level_definitions/ -o owg_fulfillment.py
- リアルタイム更新 API のクライアント ソースコードを生成します。
quicktype --lang python --src-lang schema realtime-updates-json-schema.json#top_level_definitions/ -o owg_realtime_updates.py
- 生成されたファイルをワークスペースにコピーし、ビジネス ロジックを実装します。
用途
エンティティを作成して JSON に変換する例:
import json import owg_inventory restaurant: owg_inventory.Restaurant = owg_inventory.restaurant_from_dict({ "@id": "McDonalds", "@type": "Restaurant", "addressCountry": "US", "addressLocality": "123 Local", "addressRegion": "Region", "name": "MacDonald's", "postalCode": "1234", "streetAddress": "123", "telephone": "+15552999983", "url": "https://example.com", "dateModified": "2022-09-19T13:10:00.000Z" }) restaurant_json: str = json.dumps(owg_inventory.restaurant_to_dict(restaurant))