All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.api.data.createTestDefinition.json Maven / Gradle / Ivy

The newest version!
{
  "$id": "https://open-metadata.org/schema/api/data/createTestDefinition.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CreateTestDefinitionRequest",
  "description": "Schema corresponding to a Test Definition",
  "type": "object",
  "javaType": "org.openmetadata.catalog.api.data.CreateTestDefinition",
  "javaInterfaces": ["org.openmetadata.core.entity.interfaces.CreateEntity"],
  "properties": {
    "name": {
      "description": "Name that identifies this test case.",
      "$ref": "../../type/basic.json#/definitions/entityName"
    },
    "displayName": {
      "description": "Display Name that identifies this test case.",
      "type": "string"
    },
    "description": {
      "description": "Description of the testcase.",
      "$ref": "../../type/basic.json#/definitions/markdown"
    },
    "testPlatforms": {
      "type": "array",
      "items": {
        "$ref": "../../tests/testDefinition.json#/definitions/testPlatform"
      }
    },
    "parameterDefinition": {
      "type": "array",
      "items": {
        "$ref": "../../tests/testDefinition.json#/definitions/testCaseParameterDefinition"
      }
    },
    "parameterValues": {
      "type": "array",
      "items": {
        "$ref": "../../tests/testDefinition.json#/definitions/testCaseParameterValue"
      }
    }
  },
  "required": ["name", "description", "testPlatform"],
  "additionalProperties": false
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy