agencyContact
Summary
Contact information for the agency managing this opportunity
Valid For Schemas
This custom field can be used with the following CommonGrants schemas:
Tags
Schema
A JSON example of this model.
{ "name": "agencyContact", "fieldType": "object", "value": { "description": "For more information, reach out to Jane Smith at agency US-ABC", "emailAddress": "fake_email@grants.gov", "emailDescription": "Click me to email the agency" }, "description": "Contact information for the agency managing this opportunity"}The JSON Schema for this model.
$schema: https://json-schema.org/draft/2020-12/schema$id: CustomAgencyContact.yamltype: objectproperties: name: type: string const: agencyContact fieldType: type: string const: object value: type: object properties: description: type: string emailAddress: type: string emailDescription: type: string unevaluatedProperties: not: {} examples: - description: For more information, reach out to Jane Smith at agency US-ABC emailAddress: fake_email@grants.gov emailDescription: Click me to email the agency description: type: string const: Contact information for the agency managing this opportunityrequired: - name - fieldType - value - descriptionallOf: - $ref: CustomField.yamlunevaluatedProperties: not: {}description: Agency contact information