Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejson
{
    "title": "DefiningSQLValidationResponseDefiningSqlValidationResponse",
    "description": "The response body from validateDefiningSql",
    "properties": {
        "isValid": {
            "type": "boolean",
			
            "description": "A boolean representing whether or not the provided definingSQL is valid for the given entity type."
		True if the provided SQL is valid, false otherwise."
        },
        "invalidReason": {
            "type": "string",
            "description": "If the definingSQL is invalid, this will contain a string describing why it is invalid. Otherwise, this will be null."
        }
    }
}

DefiningSqlEntityType.json

...