{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AllEntitiesSelector", "title": "AllEntitiesSelector", "description": "Entity selector that includes all entities of the given type within the catalog.", "type": "object", "properties": { "selector": { "type": "string", "enum": [ "all" ] }, "selector_parameters": { "type": "string", "enum": [ null ], "nullable": true } }, "required": [ "selector", "selector_parameters" ] }