Schema
The Seven20 schema consists of a number of objects that are used to manage the recruitment process. The schema is designed to be flexible and configurable, allowing you to customise the system to your needs. Due to the large number of objects present, these have been split into groups based on their function, as such, each schema diagram might not fully represent the relationships between objects.
Fields
Due to the highly configurable nature of the Seven20 platform, the fields present on each object are highly likely to vary from implementation to implementation. As such, the fields present on each object are not documented here, and are instead included where applicable within other areas of the documentation.
If a full list of field definitions is required, the following query can be performed which returns a full list of all Seven20 objects, and their fields:
SELECT
EntityDefinition.QualifiedApiName,
QualifiedApiName,
Label,
DataType,
Length,
Precision,
Scale
FROM FieldDefinition
WHERE
EntityDefinition.NamespacePrefix = 'seven20'
AND EntityDefinition.IsCustomizable = TRUE