Interface ContentPropertyExtractionManager
- All Known Implementing Classes:
ContentPropertyExtractionManagerImpl
public interface ContentPropertyExtractionManager
Encapsulates the logic of extracting v2 API Field Descriptors from a given JSON, based on a content property schema.
- Since:
- 7.14
-
Method Summary
Modifier and TypeMethodDescriptionextract
(JsonString json, Iterable<ContentPropertySchemaField> schemaFields) Extracts JSON document fragments and transforms them into v2 API Field Descriptors with user-defined types.
-
Method Details
-
extract
Iterable<FieldDescriptor> extract(JsonString json, Iterable<ContentPropertySchemaField> schemaFields) Extracts JSON document fragments and transforms them into v2 API Field Descriptors with user-defined types. If for some reason type can't be allied (e.g. JSON value is a string, and user defined type was a date), field will not be included in the result.- Parameters:
json
- JSON document, which fragments will be used to populate v2 API Field DescriptorsschemaFields
- all schema fields which should be extracted from a given JSON document- Returns:
- all Field Descriptors which could be extracted from a given JSON
-