Skip to content

Commit

Permalink
add if cycle keywords to linting
Browse files Browse the repository at this point in the history
  • Loading branch information
idazucchi committed Mar 12, 2024
1 parent 3fc5256 commit e5734f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schema_linter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

required_schema_fields = ['$schema', 'description', 'additionalProperties', 'title', 'name', 'type', 'properties']

allowed_schema_fields = ['$schema', 'description', 'additionalProperties', 'required', 'title', 'name', 'type', 'properties', 'definitions', 'dependencies']
allowed_schema_fields = ['$schema', 'description', 'additionalProperties', 'required', 'title', 'name', 'type', 'properties', 'definitions', 'dependencies', 'if', 'then', 'else']

# Properties

Expand Down

0 comments on commit e5734f1

Please sign in to comment.