Skip to content

Commit

Permalink
fix: Add missing and remove extra field-level checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 29, 2021
1 parent d94a5b1 commit 2f0fd89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contracting_process/field_level/definitions.py
Expand Up @@ -426,7 +426,7 @@
"contracts.documents.dateModified": [(date_time.calculate, date_time.name)],
"contracts.documents.format": [(document_format.calculate, document_format.name)],
"contracts.documents.language": [(language.calculate, language.name)],
"contracts.implementation": [(document_description_length.calculate, document_description_length.name)],
"contracts.implementation": [],
"contracts.implementation.transactions": [],
"contracts.implementation.transactions.id": [],
"contracts.implementation.transactions.source": [],
Expand Down Expand Up @@ -494,8 +494,8 @@
"contracts.implementation.transactions.payee.contactPoint.url": [],
"contracts.implementation.transactions.uri": [],
"contracts.implementation.transactions.amount": [],
"contracts.implementation.transactions.amount.amount": [],
"contracts.implementation.transactions.currency": [],
"contracts.implementation.transactions.amount.amount": [(number.calculate, number.name)],
"contracts.implementation.transactions.amount.currency": [],
"contracts.implementation.transactions.providerOrganization": [],
"contracts.implementation.transactions.providerOrganization.scheme": [
(identifier_scheme.calculate, identifier_scheme.name)
Expand Down Expand Up @@ -599,7 +599,7 @@
"contracts.amendment.changes": [],
"contracts.amendment.changes.property": [],
"contracts.amendment.changes.former_value": [],
"language": [],
"language": [(language.calculate, language.name)],
"relatedProcesses": [],
"relatedProcesses.id": [],
"relatedProcesses.relationship": [],
Expand Down

0 comments on commit 2f0fd89

Please sign in to comment.