Products
The Products type is the data type we use to hold all available products. Currently our API only supports eligibility checks for our direct home sell product, i.e. the core Opendoor product. Moving forward we intend to include support for other Opendoor products in this API, and our schema is designed with that future intent in mind. In this section, we will cover our Productstype in general as well as the one product we currently support: the SellProduct.
Definition
Section titled “Definition”type Products { homeSell: [SellProduct!]!}Fields
Section titled “Fields”| Field | Type | Description |
|---|---|---|
homeSell | [SellProduct!]! | The homeSell field will be an array of SellProduct object entries. Right now we only support the direct sell to Opendoor sell product, so the client can expect this array to always have a single entry for direct sell. |