Re-adding a field. website_url

This commit is contained in:
Scott Idem
2024-03-01 15:38:28 -05:00
parent 31a45c1b5c
commit 12af90bacc

View File

@@ -36,12 +36,18 @@ class Sponsorship_Base(BaseModel):
poc_email_name: 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.
# 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]]
person_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.
contact_li_json: Optional[Union[Json, None]]