{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Response", "title": "Response", "type": "object", "properties": { "code": { "type": "integer", "format": "int32" }, "details": { "type": "object", "additionalProperties": { "type": "object" } }, "links": { "type": "array", "items": { "$ref": "#/components/schemas/Link" } } } }