{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CPEMatchResponse", "title": "CPEMatchResponse", "type": "object", "properties": { "resultsPerPage": { "type": "integer" }, "startIndex": { "type": "integer" }, "totalResults": { "type": "integer" }, "timestamp": { "type": "string", "format": "date-time" }, "matchStrings": { "type": "array", "items": { "type": "object", "properties": { "matchString": { "type": "object", "properties": { "matchCriteriaId": { "type": "string", "format": "uuid" }, "criteria": { "type": "string" }, "lastModified": { "type": "string", "format": "date-time" }, "cpeLastModified": { "type": "string", "format": "date-time" }, "created": { "type": "string", "format": "date-time" }, "status": { "type": "string", "enum": [ "Active", "Inactive" ] }, "matches": { "type": "array", "items": { "type": "object", "properties": { "cpeName": { "type": "string" }, "cpeNameId": { "type": "string", "format": "uuid" } } } } } } } } } } }