CamilleTeruel opened a new pull request, #4976:
URL: https://github.com/apache/incubator-devlake/pull/4976
### Summary
Add support for declarative property extraction of tool model fields.
```python
from pydevlake import ToolModel, Field
class MyModel(ToolModel):
id: int = Field(primary_key=True)
version: str = Field(source='/version/number') # Will extract value
found at path /version/number in raw JSON
```
### Does this close any open issues?
Closes #4879 4879
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]