Amazon RoboMaker · Schema

Filter

Information about a filter.

RoboticsSimulation

Properties

Name Type Description
name object
values object
View JSON Schema on GitHub

JSON Schema

amazon-robomaker-openapi-filter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-robomaker/refs/heads/main/json-schema/amazon-robomaker-openapi-filter-schema.json",
  "title": "Filter",
  "description": "Information about a filter.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the filter."
        }
      ]
    },
    "values": {
      "allOf": [
        {
          "$ref": "#/components/schemas/FilterValues"
        },
        {
          "description": "A list of values."
        }
      ]
    }
  }
}