From 12af90bacc1d1ffd7b0f490a030a7a4fffd1181a Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Fri, 1 Mar 2024 15:38:28 -0500 Subject: [PATCH] Re-adding a field. website_url --- app/models/sponsorship_models.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/models/sponsorship_models.py b/app/models/sponsorship_models.py index c8e8754..7a7e2c6 100644 --- a/app/models/sponsorship_models.py +++ b/app/models/sponsorship_models.py @@ -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]]