{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/blogTags", "title": "blogTags", "type": "array", "items": { "type": "object", "properties": { "tag": { "type": "string", "example": "Blog" }, "post_ids": { "type": "array", "example": [ 1, 2, 4 ], "items": { "type": "integer" } } } }, "x-internal": false }