Factor out common definition of Tag type (#1793)

... and remove spurious `additionalProperties: true`
This commit is contained in:
Richard van der Hoff 2024-04-17 13:51:24 +01:00 committed by GitHub
parent e82829d4a2
commit 2b5f990f60
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 28 additions and 32 deletions

View file

@ -0,0 +1,24 @@
# Copyright 2020-2024 The Matrix.org Foundation C.I.C.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
title: Tag
type: object
properties:
order:
type: number
format: float
description: |-
A number in a range `[0,1]` describing a relative
position of the room under the given tag.
example: 0.25

View file

@ -53,16 +53,7 @@ paths:
tags:
type: object
additionalProperties:
title: Tag
type: object
properties:
order:
type: number
format: float
description: |-
A number in a range `[0,1]` describing a relative
position of the room under the given tag.
additionalProperties: true
$ref: definitions/tag.yaml
examples:
response:
value: {
@ -114,18 +105,7 @@ paths:
content:
application/json:
schema:
type: object
properties:
order:
type: number
format: float
description: |-
A number in a range `[0,1]` describing a relative
position of the room under the given tag.
additionalProperties: true
example: {
"order": 0.25
}
$ref: definitions/tag.yaml
description: Extra data for the tag, e.g. ordering.
required: true
responses: