Skip to main content

purchase_schema

Creates, updates, deletes, gets or lists a purchase_schema resource.

Overview

Namepurchase_schema
TypeResource
Idgodaddy.domains.purchase_schema

Fields

The following fields are returned by SELECT queries:

Request was successful

NameDatatypeDescription
idstring
modelsobject
propertiesobject
requiredarray

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
schemaselecttldRetrieve the schema to be submitted when registering a Domain for the specified TLD

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
tldstringThe Top-Level Domain whose schema should be retrieved

SELECT examples

Retrieve the schema to be submitted when registering a Domain for the specified TLD

SELECT
id,
models,
properties,
required
FROM godaddy.domains.purchase_schema
WHERE tld = '{{ tld }}' -- required
;