attachments
Summary
Attachments such as NOFOs and supplemental documents for the opportunity
Valid For Schemas
This custom field can be used with the following CommonGrants schemas:
Tags
Schema
A JSON example of this model.
{ "name": "attachments", "fieldType": "array", "value": [ { "downloadUrl": "https://example.com/file.pdf", "name": "example.pdf", "description": "A PDF file with instructions", "sizeInBytes": 1000, "mimeType": "application/pdf", "createdAt": "2025-01-01T17:01:01.000Z", "lastModifiedAt": "2025-01-02T17:30:00.000Z" } ], "description": "Attachments such as NOFOs and supplemental documents for the opportunity"}The JSON Schema for this model.
$schema: https://json-schema.org/draft/2020-12/schema$id: CustomAttachments.yamltype: objectproperties: name: type: string const: attachments fieldType: type: string const: array value: type: array items: $ref: File.yaml examples: - - downloadUrl: https://example.com/file.pdf name: example.pdf description: A PDF file with instructions sizeInBytes: 1000 mimeType: application/pdf createdAt: 2025-01-01T17:01:01 lastModifiedAt: 2025-01-02T17:30:00 description: type: string const: Attachments such as NOFOs and supplemental documents for the opportunityrequired: - name - fieldType - value - descriptionallOf: - $ref: CustomField.yamlunevaluatedProperties: not: {}description: List of attachments associated with the opportunity