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
41 changes: 34 additions & 7 deletions services/external-actor-gateway-service/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,11 @@ components:
metaDescription: null
purpose: null
enrichmentStatus: pending
4Example:
description: Example values extracted from schema defaults
summary: 4 example
value:
requires: []
CreateAudienceRequestExample:
description: Example values extracted from schema defaults
summary: CreateAudienceRequest example
Expand Down Expand Up @@ -669,7 +674,7 @@ components:
- type
- youtubeUrl
additionalProperties: false
BodyPropsSchemaTypeSchema:
BodyRequiresTypeSchema:
type: object
properties:
type:
Expand All @@ -678,14 +683,15 @@ components:
body:
type: string
maxLength: 100000
propsSchema:
type: object
propertyNames:
type: string
additionalProperties: {}
requires:
default: []
type: array
items:
$ref: "#/components/schemas/NestedObject3"
required:
- type
- body
- requires
additionalProperties: false
TypeVideoSchema:
type: object
Expand Down Expand Up @@ -2798,6 +2804,17 @@ components:
- newValue
- status
additionalProperties: false
NestedObject3:
type: object
properties:
packId:
$ref: "#/components/schemas/PackId"
packVersion:
$ref: "#/components/schemas/PackVersion"
required:
- packId
- packVersion
additionalProperties: false
OgImage:
type: object
properties:
Expand All @@ -2810,6 +2827,16 @@ components:
- type
- fileId
additionalProperties: false
PackId:
type: string
minLength: 1
maxLength: 120
pattern: ^[a-z0-9][a-z0-9-]*$
PackVersion:
type: string
minLength: 1
maxLength: 60
pattern: ^\d+\.\d+\.\d+(?:[-+][0-9A-Za-z.-]+)?$
PostAccount:
type: object
properties:
Expand Down Expand Up @@ -2946,7 +2973,7 @@ components:
- $ref: "#/components/schemas/FileIdTypeSchema"
- $ref: "#/components/schemas/FileIdTypeSchema"
- $ref: "#/components/schemas/TypeYoutubeUrlSchema"
- $ref: "#/components/schemas/BodyPropsSchemaTypeSchema"
- $ref: "#/components/schemas/BodyRequiresTypeSchema"
createdAt:
$ref: "#/components/schemas/UnnamedSchema"
updatedAt:
Expand Down
Loading