Skip to content

Commit

Permalink
feat: support for simple extensions dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jvanstraten committed Sep 12, 2022
1 parent 521b63d commit 99bb18d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions text/simple_extensions_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ $schema: https://json-schema.org/draft/2020-12/schema
additionalProperties: false
type: object
properties:
dependencies:
# For reusing type classes and type variations from other extension files.
# The keys are namespace identifiers that you can then use as dot-separated
# prefix for type class and type variation names in functions and the base
# type class for variations. The values must be extension URIs, following
# the same format and conventions as those used in the proto plans.
type: object
patternProperties:
"^[a-zA-Z_\\$][a-zA-Z0-9_\\$]*$":
type: string
types:
type: array
minItems: 1
Expand Down

0 comments on commit 99bb18d

Please sign in to comment.