objectiveai-sdk 2.0.7

ObjectiveAI SDK, definitions, and utilities
Documentation
{
  "title": "RemotePath",
  "anyOf": [
    {
      "title": "Github",
      "type": "object",
      "properties": {
        "commit": {
          "type": "string"
        },
        "owner": {
          "type": "string"
        },
        "remote": {
          "type": "string",
          "enum": [
            "github"
          ]
        },
        "repository": {
          "type": "string"
        }
      }
    },
    {
      "title": "Filesystem",
      "type": "object",
      "properties": {
        "commit": {
          "type": "string"
        },
        "owner": {
          "type": "string"
        },
        "remote": {
          "type": "string",
          "enum": [
            "filesystem"
          ]
        },
        "repository": {
          "type": "string"
        }
      }
    },
    {
      "title": "Mock",
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "remote": {
          "type": "string",
          "enum": [
            "mock"
          ]
        }
      }
    }
  ]
}