Skip to content

CustomField

A model for defining custom fields on a record.

Property Type Required Description
name string Yes Name of the custom field
fieldType CustomFieldType Yes The JSON schema type to use when de-serializing the value
schema url No Link to the full JSON schema for this custom field
value any Yes Value of the custom field
description string No Description of the custom field’s purpose

A JSON example of this model.

{
"name": "eligibilityType",
"fieldType": "array",
"value": [
"nonprofit",
"academic"
],
"description": "Types of eligible organizations"
}
VersionChangesSchema
0.1.0
  • Added CustomField model
CustomField.yaml

The set of JSON schema types supported by a custom field.

Value Description
string Text values
integer Whole numbers
number Numeric values
boolean True/false values
object Structured data objects
array Lists of values

A JSON example of this model.

string
VersionChangesSchema
0.1.0
  • Added CustomFieldType enum
CustomFieldType.yaml