contactInfo
Summary
Contact information (name, email, phone, description) for this resource
Valid For Schemas
This custom field can be used with the following CommonGrants schemas:
Tags
Schema
A JSON example of this model.
{ "name": "contactInfo", "fieldType": "object", "value": { "name": "Jane Smith", "email": "jane.smith@agency.gov", "phone": "+1-202-555-0100", "description": "Program officer for technical questions" }, "description": "Contact information (name, email, phone, description) for this resource"}The JSON Schema for this model.
$schema: https://json-schema.org/draft/2020-12/schema$id: CustomContactInfo.yamltype: objectproperties: name: type: string const: contactInfo fieldType: type: string const: object value: type: object properties: name: type: string description: The name of the contact person or office email: $ref: email.yaml description: The email address for the contact phone: type: string description: The phone number for the contact description: type: string description: Plain-text fallback when structured fields are not available unevaluatedProperties: not: {} examples: - name: Jane Smith email: jane.smith@agency.gov phone: +1-202-555-0100 description: Program officer for technical questions description: type: string const: Contact information (name, email, phone, description) for this resourcerequired: - name - fieldType - value - descriptionallOf: - $ref: CustomField.yamlunevaluatedProperties: not: {}description: Structured contact info; systems with only a text blob can use the description fieldx-valid-schemas: - OpportunityBase - CompetitionBasex-version: 0.1.0x-author: CommonGrantsx-tags: - organization - context