Cases Update

Go to Product

List view for cases

Options

Id
A unique integer value identifying this case.
Body

Request body which must comply to the following JSON Schema:

{
  "required" : [ "content", "file_number" ],
  "type" : "object",
  "properties" : {
    "id" : {
      "title" : "ID",
      "type" : "integer",
      "readOnly" : true
    },
    "slug" : {
      "title" : "Slug",
      "type" : "string",
      "readOnly" : true
    },
    "court" : {
      "title" : "Court",
      "required" : [ "name", "slug", "state" ],
      "type" : "object",
      "properties" : {
        "id" : {
          "title" : "ID",
          "type" : "integer",
          "readOnly" : true
        },
        "name" : {
          "title" : "Name",
          "maxLength" : 200,
          "minLength" : 1,
          "type" : "string",
          "description" : "Full name of the court with location"
        },
        "slug" : {
          "title" : "Slug",
          "maxLength" : 60,
          "minLength" : 1,
          "pattern" : "^[-a-zA-Z0-9_]+$",
          "type" : "string",
          "description" : "Type & city name as lowercase",
          "format" : "slug"
        },
        "city" : {
          "title" : "City",
          "type" : "integer",
          "description" : "Court belongs to this city, if null court is state-level",
          "nullable" : true
        },
        "state" : {
          "title" : "State",
          "type" : "integer",
          "description" : "Court belongs to this state (derive country of this field)"
        },
        "jurisdiction" : {
          "title" : "Jurisdiction",
          "maxLength" : 100,
          "type" : "string",
          "description" : "Jurisdiction of court (ordinary, civil, ...)",
          "nullable" : true
        },
        "level_of_appeal" : {
          "title" : "Level of appeal",
          "maxLength" : 100,
          "type" : "string",
          "description" : "Subject-matter jurisdiction (local, federal, high court, ...)",
          "nullable" : true
        }
      }
    },
    "file_number" : {
      "title" : "File number",
      "maxLength" : 100,
      "type" : "string",
      "description" : "File number as defined by court"
    },
    "date" : {
      "title" : "Date",
      "type" : "string",
      "description" : "Publication date as in source",
      "format" : "date",
      "nullable" : true
    },
    "created_date" : {
      "title" : "Created date",
      "type" : "string",
      "description" : "Entry is created at this date time",
      "format" : "date-time",
      "readOnly" : true
    },
    "updated_date" : {
      "title" : "Updated date",
      "type" : "string",
      "description" : "Date time of last change",
      "format" : "date-time",
      "readOnly" : true
    },
    "type" : {
      "title" : "Type",
      "maxLength" : 100,
      "type" : "string",
      "description" : "Type of decision (Urteil, Beschluss, ...)",
      "nullable" : true
    },
    "ecli" : {
      "title" : "ECLI",
      "maxLength" : 255,
      "type" : "string",
      "description" : "European Case Law Identifier"
    },
    "content" : {
      "title" : "Content",
      "minLength" : 1,
      "type" : "string",
      "description" : "Case full-text formatted in Legal HTML"
    }
  }
}
Response Type
Specify the response type. The following response types are available:
  • application/json
  • application/xml
Result Format
Specify how the response should be mapped to the table output. The following formats are available:
  • Structured Table: Returns a parsed table with data split into rows and columns.
    • Id:
    • Slug:
    • Court:
    • File Number: File number as defined by court
    • Date: Publication date as in source
    • Created Date: Entry is created at this date time
    • Updated Date: Date time of last change
    • Type: Type of decision (Urteil, Beschluss, ...)
    • Ecli: European Case Law Identifier
    • Content: Case full-text formatted in Legal HTML
  • Raw Response: Returns the raw response in a single row with the following columns:
    • body: Response body
    • status: HTTP status code

Input Ports

Icon
Configuration data.

Output Ports

Icon
Result of the request depending on the selected Result Format.
Icon
Configuration data (this is the same as the input port; it is provided as passthrough for sequentially chaining nodes to declutter your workflow connections).

Popular Predecessors

  • No recommendations found

Popular Successors

  • No recommendations found

Views

This node has no views

Workflows

  • No workflows found

Links

Developers

You want to see the source code for this node? Click the following button and we’ll use our super-powers to find it for you.