Codat · Schema

Accounting: Project reference

Unified_API

Properties

Name Type Description
id string Unique identifier to the project reference.
name string The project's name.
View JSON Schema on GitHub

JSON Schema

codat-projectref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectRef",
  "title": "Accounting: Project reference",
  "x-internal": true,
  "required": [
    "id"
  ],
  "type": "object",
  "properties": {
    "id": {
      "minLength": 1,
      "type": "string",
      "description": "Unique identifier to the project reference."
    },
    "name": {
      "type": "string",
      "nullable": true,
      "description": "The project's name."
    }
  }
}