Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ZO-4596: Zappi returns read_more_url and topiclinks of centerpages of areas #125

Merged
merged 1 commit into from
Mar 26, 2024
Merged
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
20 changes: 19 additions & 1 deletion docs/api/api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1150,13 +1150,31 @@ components:
nullable: true
# format: uri
description: "A section often links to topic pages etc."
example: "https://www.zeit.de/thema/coronavirus"
example: "https://www.zeit.de/thema/hamburg"
title:
type: string
nullable: true
example: "This is a simple title"
items:
type: array
topiclinks:
nullable: true
items:
$ref: "#/components/schemas/CenterpageAreaTopicLink"

CenterpageAreaTopicLink:
description: "Links to topicpage"
type: object
required:
- label
- link
properties:
label:
type: string
example: "Hongkong"
link:
type: string
example: https://www.zeit.de/schlagworte/orte/hongkong/index"

CenterpageRegion:
allOf:
Expand Down