{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StringCollectionContract", "title": "StringCollectionContract", "required": [ "count", "items" ], "type": "object", "properties": { "count": { "maximum": 2147483647, "minimum": 0, "type": "integer", "description": "The number of items in the collection", "format": "int32", "readOnly": true }, "items": { "type": "array", "items": { "type": "string" }, "description": "The collection of items" } }, "additionalProperties": false }