agency
Summary
Information about the agency offering 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": "agency", "fieldType": "object", "value": { "agencyCode": "US-ABC", "agencyName": "Department of Examples", "topLevelAgencyName": "Department of Examples" }, "description": "Information about the agency offering this opportunity"}The JSON Schema for this model.
$schema: https://json-schema.org/draft/2020-12/schema$id: CustomAgency.yamltype: objectproperties: name: type: string const: agency fieldType: type: string const: object value: type: object properties: agencyCode: type: string agencyName: type: string topLevelAgencyName: type: string required: - agencyCode - agencyName unevaluatedProperties: not: {} examples: - agencyCode: US-ABC agencyName: Department of Examples topLevelAgencyName: Department of Examples description: type: string const: Information about the agency offering this opportunityrequired: - name - fieldType - value - descriptionallOf: - $ref: CustomField.yamlunevaluatedProperties: not: {}description: Agency information including code and name