Skip to content
Merged
Show file tree
Hide file tree
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
57 changes: 38 additions & 19 deletions config/schema/artifacts/json_schemas.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ json_schema_version: 1
type: string
enum:
- Address
- BrokerWholesaler
- Company
- Component
- DirectWholesaler
- ElectricalPart
- Manufacturer
- MechanicalPart
Expand All @@ -33,7 +35,6 @@ json_schema_version: 1
- PhysicalStore
- Sponsor
- Team
- ThirdPartyWholesale
- Widget
- WidgetWorkspace
id:
Expand Down Expand Up @@ -160,6 +161,24 @@ json_schema_version: 1
- sponsorships_object
Boolean:
type: boolean
BrokerWholesaler:
type: object
properties:
id:
allOf:
- "$ref": "#/$defs/ID"
- maxLength: 8191
active:
anyOf:
- "$ref": "#/$defs/Boolean"
- type: 'null'
__typename:
type: string
const: BrokerWholesaler
default: BrokerWholesaler
required:
- id
- active
Color:
type: string
enum:
Expand Down Expand Up @@ -253,6 +272,24 @@ json_schema_version: 1
DateTime:
type: string
format: date-time
DirectWholesaler:
type: object
properties:
id:
allOf:
- "$ref": "#/$defs/ID"
- maxLength: 8191
active:
anyOf:
- "$ref": "#/$defs/Boolean"
- type: 'null'
__typename:
type: string
const: DirectWholesaler
default: DirectWholesaler
required:
- id
- active
ElectricalPart:
type: object
properties:
Expand Down Expand Up @@ -875,24 +912,6 @@ json_schema_version: 1
- was_shortened
- players_nested
- players_object
ThirdPartyWholesale:
type: object
properties:
id:
allOf:
- "$ref": "#/$defs/ID"
- maxLength: 8191
active:
anyOf:
- "$ref": "#/$defs/Boolean"
- type: 'null'
__typename:
type: string
const: ThirdPartyWholesale
default: ThirdPartyWholesale
required:
- id
- active
Untyped:
type:
- array
Expand Down
75 changes: 50 additions & 25 deletions config/schema/artifacts/json_schemas_by_version/v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ json_schema_version: 1
type: string
enum:
- Address
- BrokerWholesaler
- Company
- Component
- DirectWholesaler
- ElectricalPart
- Manufacturer
- MechanicalPart
Expand All @@ -33,7 +35,6 @@ json_schema_version: 1
- PhysicalStore
- Sponsor
- Team
- ThirdPartyWholesale
- Widget
- WidgetWorkspace
id:
Expand Down Expand Up @@ -187,6 +188,30 @@ json_schema_version: 1
- sponsorships_object
Boolean:
type: boolean
BrokerWholesaler:
type: object
properties:
id:
allOf:
- "$ref": "#/$defs/ID"
- maxLength: 8191
ElasticGraph:
type: ID!
nameInIndex: id
active:
anyOf:
- "$ref": "#/$defs/Boolean"
- type: 'null'
ElasticGraph:
type: Boolean
nameInIndex: active
__typename:
type: string
const: BrokerWholesaler
default: BrokerWholesaler
required:
- id
- active
Color:
type: string
enum:
Expand Down Expand Up @@ -313,6 +338,30 @@ json_schema_version: 1
DateTime:
type: string
format: date-time
DirectWholesaler:
type: object
properties:
id:
allOf:
- "$ref": "#/$defs/ID"
- maxLength: 8191
ElasticGraph:
type: ID!
nameInIndex: id
active:
anyOf:
- "$ref": "#/$defs/Boolean"
- type: 'null'
ElasticGraph:
type: Boolean
nameInIndex: active
__typename:
type: string
const: DirectWholesaler
default: DirectWholesaler
required:
- id
- active
ElectricalPart:
type: object
properties:
Expand Down Expand Up @@ -1175,30 +1224,6 @@ json_schema_version: 1
- was_shortened
- players_nested
- players_object
ThirdPartyWholesale:
type: object
properties:
id:
allOf:
- "$ref": "#/$defs/ID"
- maxLength: 8191
ElasticGraph:
type: ID!
nameInIndex: id
active:
anyOf:
- "$ref": "#/$defs/Boolean"
- type: 'null'
ElasticGraph:
type: Boolean
nameInIndex: active
__typename:
type: string
const: ThirdPartyWholesale
default: ThirdPartyWholesale
required:
- id
- active
Untyped:
type:
- array
Expand Down
Loading
Loading