{
  "name": "SignIn",
  "plane": "control",
  "terraformEligible": false,
  "protocol": {
    "kind": "rest",
    "method": "POST",
    "path": "/auth/sign-in",
    "query": [],
    "headers": [],
    "body": true
  },
  "requestBody": "json",
  "responseBody": "json",
  "requestSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "additionalProperties": false,
    "properties": {
      "email": {
        "default": null,
        "type": [
          "string",
          "null"
        ]
      },
      "tenant": {
        "default": null,
        "type": [
          "string",
          "null"
        ]
      },
      "vendor": {
        "default": null,
        "type": [
          "string",
          "null"
        ]
      }
    },
    "title": "SignInRequest",
    "type": "object"
  },
  "responseSchema": {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "properties": {
      "sessionId": {
        "type": [
          "string",
          "null"
        ]
      },
      "success": {
        "type": "boolean"
      }
    },
    "required": [
      "success"
    ],
    "title": "SignInResponse",
    "type": "object"
  }
}
