Enum DatasetSchemaPropertyType

  • All Implemented Interfaces:
    Serializable, Comparable<DatasetSchemaPropertyType>

    public enum DatasetSchemaPropertyType
    extends Enum<DatasetSchemaPropertyType>
    Property types in a dataset schema: * `string` - A generic text string. * `number` - A generic number. * `array` - An array of items. The `items` property must also be provided. Multiple layers of arrays are not supported. * `person_name` - The name of a person. Values for this property type can either be provided as a string containing the full name, or can be provided as an object of the `PersonName_Base` type. * `job_title` - A job title. Values for this property must be provided as strings. * `organization_name` - The name of an organization. Values for this property must be provided as strings. * `email` - An email address. * `phone` - A phone number. * `country` - A country name or code. The 2-letter country code is preferred. * `birth_date` - A birth date, or alternatively just a birth year. Values for this property must be provided as strings, preferably in the `yyyy-MM-dd` date format (but other common date formats will be attempted too). * `national_id` - A national (or otherwise official) identification number. This could be used for instance of passport numbers or driver's license numbers. Values for this property can be provided as a string containing the full national ID, or as an object containing a `country` and a `id` property. * `gender` - The gender of a person. Values of this property can conform to any gender encoding topology that the client wishes to use (e.g. `M`, `F`, `T`, `U`). * `meta_external_id` - The record's ID in an external system.