Dynamic Entities — Usage
Setup
- Python: 3.8+ recommended. Install dependencies:
pip install -r requirements.txt- Environment: create a
.envfile or export the following environment variables used byobp_client.py:- OBP_USERNAME: OBP username
- OBP_PASSWORD: OBP password
- OBP_CONSUMER_KEY: consumer key for DirectLogin
- OBP_HOSTNAME: (optional) OBP base URL; defaults in
obp_client.py
Files
parse_minimum_fields.py: Parse the minimal field matrix Excel (min_field_matrix.xlsxby default) and optionally create dynamic entities on OBP.main.py: High-level management script that deletes objects, deletes matching dynamic entities, then recreates entities defined indynamic_entities.py.
parse_minimum_fields.py — Usage
This creates the entities from the minimal field matrix Excel file, exported from the Google Sheet template.
- Run locally (print parsed entities):
python3 parse_minimum_fields.py [path/to/min_field_matrix.xlsx]- Create dynamic entities on OBP:
python3 parse_minimum_fields.py [path/to/min_field_matrix.xlsx] --create- Update existing dynamic entities on OBP:
python3 parse_minimum_fields.py [path/to/min_field_matrix.xlsx] --update--update looks up each existing dynamic entity by name and updates its definition in place (entities not found on OBP are skipped). Use --create for fresh entities and --update to modify ones that already exist.
- Options:
file(positional): Path to the Excel file. Defaults tomin_field_matrix.xlsx.--create: If set, the script will POST created entity definitions to the OBP management API.--update: If set, update existing dynamic entities (matched by name) instead of creating new ones.--token: DirectLogin token to use (overrides token fromobp_client.py).--host: OBP host/base URL to use (overridesOBP_HOSTNAME).--yes: When used with--create, skip interactive confirmation prompt.
Note:
--createonly creates — it does not delete existing entities or objects first. To do a clean wipe-and-recreate, usemain.py(which deletes objects and entity definitions before recreating), but note thatmain.pyrebuilds from the hardcoded entities indynamic_entities.py, not from a spreadsheet.
Notes about parsing behavior:
- Column A is used for field names and
entity:rows start new entities. - Column D is preserved as the
value(type) in the parsed attribute dict. - Column F is used as the
descriptionfor attributes (and the entity-level description onentity:rows). - Column G is used as the
examplevalue for attributes when present. - Field names are sanitized: dots and other disallowed characters are replaced by underscore (
_), repeated underscores are collapsed, and leading/trailing underscores are removed. - Example strings from column G have surrounding single or double quotes stripped.
Re-create the entities (delete then create from the spreadsheet)
A clean wipe-and-recreate driven entirely by the spreadsheet (this is what main.py does not do — main.py is tied to the hardcoded list in dynamic_entities.py):
- Parse and save the entity list to
entities_output.txt:
python3 parse_minimum_fields.py min_field_matrix.xlsx --save # non-interactive
# or run without --save and answer "y" at the prompt (default filename entities_output.txt)- Delete those entities and all their records on OBP with
delete_ogcr_entities.py:
python3 delete_ogcr_entities.py # reads entities_output.txt by default; prompts for confirmation
python3 delete_ogcr_entities.py --yes # skip the confirmation prompt- Re-create the entities from the spreadsheet:
python3 parse_minimum_fields.py min_field_matrix.xlsx --create --yesNotes:
delete_ogcr_entities.pydeletes exactly the entities listed inentities_output.txt(one perEntity:line) and leaves all other dynamic entities on the instance untouched. If an entity was renamed in the spreadsheet, the old name is not in the file and will be left on OBP as an orphan — delete it separately. To wipe every dynamic entity instead, usedelete_all_dynamic_entities.py.- Deletion runs in repeated passes so reference (foreign-key) constraints between entities don't block a clean delete, and it exits non-zero if anything it was asked to delete survives.
- Always regenerate
entities_output.txt(step 1) after editing the spreadsheet, so the delete list matches what you are about to create. delete_ogcr_entities.pyoptions:file(positional, defaultentities_output.txt),--yes(skip confirmation),--token(override the DirectLogin token).
Create dummy data
create_dummy_data.py creates one sample object per entity, driven by the same spreadsheet. Run it after the entities exist on OBP (see "Re-create the entities" above):
python3 create_dummy_data.py [path/to/min_field_matrix.xlsx] [--token TOKEN]file(positional): spreadsheet path. Defaults tomin_field_matrix.xlsx.--token: DirectLogin token (overrides the token fromobp_client.py).
How it works:
- Values come from the spreadsheet — each field is populated from its column G
examplevalue, coerced to the field's declared type (string,integer,number,boolean,json,DATE_WITH_DAY). - Foreign keys are made valid — any
<entity>_idfield is overwritten with the real id of the referenced object, so the dummy data is referentially consistent (e.g.activity.operator_idpoints at the createdoperator, andaudit_reportlinks to the operator, activity, scheme, body, plans and certificate). - Entities that own an
<entity>_idfield get a canonical id taken from the spreadsheet example; the verification/report entities without one receive an OBP-generated UUID. - The field
compliance_certificate_id(which does not follow the<entity>_idconvention) is mapped tocertificate_of_compliancevia an explicit alias in the script (FK_ALIASES).
Notes:
- It creates one record per entity. To create more (e.g. several parcels under one activity), extend the payload loop in
main(). - It is fully spreadsheet-driven — it does not use the hardcoded entities in
dynamic_entities.py.
main.py — Usage
- Run the management workflow (delete objects, delete entity definitions, recreate entities):
python3 main.pymain.pyuses credentials and host configured in environment (viaobp_client.py). It does not accept CLI args; set the environment first.
Tips & Validation
- The parser attempts to coerce example values to appropriate types (integer, number, boolean, array/object via JSON) before sending to OBP so the
examplefield matches OBP validation expectations. - If you run with
--createand receive a 400 validation error, inspect the printed parsed entities to find which property'sexampleis mismatched.
Example workflow
- Ensure env vars set (or a
.envfile present). - Inspect parsing output:
python3 parse_minimum_fields.py- Create entities on OBP (confirm with
--yesor interactively):
python3 parse_minimum_fields.py --create --yes- Use
main.pyto clean and recreate system entities defined indynamic_entities.py:
python3 main.pyWhere to look for issues
- Parsed entities printed by
parse_minimum_fields.pyshow the exactvalueandexampleused to build the dynamic entity schema. - If a field example must be a number, ensure column H contains an unquoted numeric value (the parser will coerce when possible).
If you want me to add example .env content, a quick test script, or adjust any parsing detail, tell me which part to update next.