Re-adding a field. website_url
This commit is contained in:
@@ -36,12 +36,18 @@ class Sponsorship_Base(BaseModel):
|
|||||||
poc_email_name: Optional[str]
|
poc_email_name: Optional[str]
|
||||||
poc_email: Optional[str]
|
poc_email: Optional[str]
|
||||||
|
|
||||||
|
# Store this here and under social_li_json. However, website_url should be the primary source for the website URL.
|
||||||
|
website_url: Optional[str]
|
||||||
|
|
||||||
# For the sponsoring organization, person, and point of contact in a JSON object format. The Aether standard field names should be used. Examples: name, given_name, family_name, full_name, full_name_override, email, phone, address_line_1, city, state_province, postal_code, country, etc.
|
# For the sponsoring organization, person, and point of contact in a JSON object format. The Aether standard field names should be used. Examples: name, given_name, family_name, full_name, full_name_override, email, phone, address_line_1, city, state_province, postal_code, country, etc.
|
||||||
# Example poc_json: {"given_name": "John", "family_name": "Doe", "full_name": "John Doe", "full_name_override": "John Doe", "email": "john.doe@example.com"}
|
# Example poc_json: {"given_name": "John", "family_name": "Doe", "full_name": "John Doe", "full_name_override": "John Doe", "email": "john.doe@example.com"}
|
||||||
organization_json: Optional[Union[Json, None]]
|
organization_json: Optional[Union[Json, None]]
|
||||||
person_json: Optional[Union[Json, None]]
|
person_json: Optional[Union[Json, None]]
|
||||||
poc_json: Optional[Union[Json, None]]
|
poc_json: Optional[Union[Json, None]]
|
||||||
|
|
||||||
|
# For the address in a JSON object format. The address types are expected to be: mailing, billing, home, work, etc. The Aether standard field names should be used. Examples: address_line_1, address_line_2, city, state_province, postal_code, country, etc.
|
||||||
|
address_li_json: Optional[Union[Json, None]]
|
||||||
|
|
||||||
# For additional contacts in a JSON object list (array) format. A contact person should contain: given_name, family_name, full_name, email, phone, etc.
|
# For additional contacts in a JSON object list (array) format. A contact person should contain: given_name, family_name, full_name, email, phone, etc.
|
||||||
contact_li_json: Optional[Union[Json, None]]
|
contact_li_json: Optional[Union[Json, None]]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user