Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 21 additions & 9 deletions i3-policy-store.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -793,18 +793,30 @@ components:
- $ref: '#/components/schemas/Condition'
- type: object
required:
- tag
- tests
properties:
tag:
type: string
enum: [Identifier, Sender, Address, InfoEventCode, InfoValueName]
operator:
type: string
enum: [EQ, SS, NE]
content:
type: string
tests:
type: array
minItems: 1
items:
$ref: '#/components/schemas/CapConditionTest'
nonInteractive:
type: boolean
CapConditionTest:
type: object
required:
- tag
- operator
- content
properties:
tag:
type: string
enum: [Identifier, Sender, Address, InfoEventCode, InfoValueName]
operator:
type: string
enum: [EQ, SS, NE]
content:
type: string
CallingNumberVerificationStatusCondition:
allOf:
- $ref: '#/components/schemas/Condition'
Expand Down