Simplify Truth API (v2)

Download OpenAPI specification:Download

A service to simplify truth expressions, and generate truth tables.

Common

Information

Information about this API.

Responses

Response samples

Content type
application/json
{
  • "message": "string",
  • "docs": "string",
  • "createdBy": "string"
}

Check if an expression is valid

Check if an expression is valid.

path Parameters
exp
required
string

Responses

Response samples

Content type
application/json
{
  • "isValid": true
}

The OpenAPI specification

The OpenAPI specification for this API.

Responses

Expression

Check if an expression is valid

Check if an expression is valid.

path Parameters
exp
required
string

Responses

Response samples

Content type
application/json
{
  • "isValid": true
}

Simplify and generate a truth table

path Parameters
exp
required
string
query Parameters
object (Options for simplifying an expression and generating a truth table)

Responses

Response samples

Content type
application/json
{
  • "before": "string",
  • "after": "string",
  • "operations": [
    ],
  • "expression": {
    },
  • "truthTable": {
    }
}

Simplify a truth expression

path Parameters
exp
required
string
query Parameters
object (Options for simplifying an expression)

Responses

Response samples

Content type
application/json
{
  • "before": "string",
  • "after": "string",
  • "operations": [
    ],
  • "expression": {
    }
}

Table

Simplify and generate a truth table

path Parameters
exp
required
string
query Parameters
object (Options for simplifying an expression and generating a truth table)

Responses

Response samples

Content type
application/json
{
  • "before": "string",
  • "after": "string",
  • "operations": [
    ],
  • "expression": {
    },
  • "truthTable": {
    }
}

Generate a truth table

path Parameters
exp
required
string
query Parameters
object (Options for generating a truth table)

Responses

Response samples

Content type
application/json
{
  • "truthTable": {
    }
}