| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) Auction | Auction | AuctionModule | Ebay |
| (2) Category | Category | ListingModule | Ebay |
| (3) CharityAuctionEvent | CharityAuctionEvent | CharityOrganizationModule | Ebay |
| (4) CharityAuctionListing | CharityAuctionListing | ListingModule | Ebay |
| (5) CharityListing | CharityListing | CharityOrganizationModule | Ebay |
| (6) FixedPriceOffer | FixedPriceOffer | ListingModule | Ebay |
| (7) Listing | Listing | ListingModule | Ebay |
| (8) ListingMedia | ListingMedia | ListingModule | Ebay |
| (9) OrderItem | OrderItem | UserAccountModule | Ebay |
| (10) UserAccount | UserAccount | UserAccountModule | Ebay |
| Category | ListingModule | Ebay |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | Category | ||
| (2) Name | STRING | Category | ||
| (3) ParentCategory | LONG | Category |
Example:
final Category category = (Category) invokeModule(LISTING_MODULE + "/category/" + id, Category.class);| CharityAuctionListing | ListingModule | Ebay |
| Property | Type | Entity | Reference | Module |
| (1) CharityAuctionEvent | LONG | CharityAuctionListing | CharityAuctionEvent | CharityOrganizationModule |
| (2) Listing | LONG | CharityAuctionListing | Listing | ListingModule |
Example:
final CharityAuctionListing charityauctionlisting = (CharityAuctionListing) invokeModule(LISTING_MODULE + "/charityauctionlisting/" + id, CharityAuctionListing.class);| FixedPriceOffer | ListingModule | Ebay |
| Property | Type | Entity | Reference | Module |
| (1) BuyerUserAccount | LONG | FixedPriceOffer | UserAccount | UserAccountModule |
| (2) Currency | STRING | FixedPriceOffer | ||
| (3) Listing | LONG | FixedPriceOffer | Listing | ListingModule |
| (4) OfferDate | DATE | FixedPriceOffer | ||
| (5) OfferedPrice | STRING | FixedPriceOffer | ||
| (6) Status | STRING | FixedPriceOffer |
Example:
final FixedPriceOffer fixedpriceoffer = (FixedPriceOffer) invokeModule(LISTING_MODULE + "/fixedpriceoffer/" + id, FixedPriceOffer.class);| Listing | ListingModule | Ebay |
| Property | Type | Entity | Reference | Module |
| (1) BuyNowPrice | STRING | Listing | ||
| (2) Category | LONG | Listing | Category | ListingModule |
| (3) Currency | STRING | Listing | ||
| (4) Description | STRING | Listing | ||
| (5) EndDate | DATE | Listing | ||
| (6) ListingType | STRING | Listing | ||
| (7) LocationCountry | STRING | Listing | ||
| (8) LocationRegion | STRING | Listing | ||
| (9) QuantityAvailable | LONG | Listing | ||
| (10) SellerUserAccount | LONG | Listing | UserAccount | UserAccountModule |
| (11) StartDate | DATE | Listing | ||
| (12) StartPrice | STRING | Listing | ||
| (13) Status | STRING | Listing | ||
| (14) Title | STRING | Listing |
Example:
final Listing listing = (Listing) invokeModule(LISTING_MODULE + "/listing/" + id, Listing.class);| ListingMedia | ListingModule | Ebay |
| Property | Type | Entity | Reference | Module |
| (1) Caption | STRING | ListingMedia | ||
| (2) Listing | LONG | ListingMedia | Listing | ListingModule |
| (3) MediaType | STRING | ListingMedia | ||
| (4) SortOrder | LONG | ListingMedia | ||
| (5) Url | STRING | ListingMedia |
Example:
final ListingMedia listingmedia = (ListingMedia) invokeModule(LISTING_MODULE + "/listingmedia/" + id, ListingMedia.class);| Contact | Donate | Imprint |