주문 엔드 투 엔드 데이터 피드 및 처리를 컴퓨터가 읽을 수 있는 버전입니다. API 정의를 사용하여 클라이언트 소스 코드를 생성하고 JSON 데이터 구조입니다 그렇기 때문에 머신러닝 모델을 개발하는 데 애플리케이션 기능 및 비즈니스 로직에 더 집중할 수 있습니다
이 예에서는 quicktype을 사용합니다. 사용하기 쉬운 클라이언트 라이브러리를 생성하기 위한 CLI
JSON 스키마 다운로드
코드 생성 및 유효성 검사에는 컴퓨터가 읽을 수 있는 버전의 데이터 피드 및 API가 필요합니다.
코드 생성
Quicktype을 사용하면 API가 변경될 때 코드를 재생성할 수 있으므로 영향을 받는 애플리케이션 코드를 업데이트하기만 하면 됩니다. QuickType은 C++를 지원하므로 Java, JavaScript, Python 및 기타 프로그래밍 언어를 지원합니다.
JSON 스키마를 지원하는 다른 코드 생성기 도구를 사용할 수도 있습니다. 클라이언트 라이브러리를 생성합니다.
노드 패키지 관리자 사용 (npm)을 사용하여 프로젝트 디렉터리에 빠른 유형 설치 주문 엔드 투 엔드 통합을 사용하는 것이 좋습니다
npm install quicktype
TypeScript
- 엔드 투 엔드 데이터 피드 주문을 위한 클라이언트 소스 코드를 생성합니다.
quicktype --lang typescript --src-lang schema inventory-v2-json-schema.json#top_level_definitions/ -o ./owg-inventory.ts
- fulfillment 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);
자바
- 엔드 투 엔드 데이터 피드 주문을 위한 클라이언트 소스 코드를 생성합니다.
quicktype --lang java --src-lang schema inventory-v2-json-schema.json#top_level_definitions/ -o ./java/ --no-date-times --package com.example.inventory
- fulfillment 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); } }
자바스크립트
- 엔드 투 엔드 데이터 피드 주문을 위한 클라이언트 소스 코드를 생성합니다.
quicktype --lang javascript --src-lang schema inventory-v2-json-schema.json#top_level_definitions/ -o owg-inventory.js
- fulfillment 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
- fulfillment 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))