{
	"$id": "https://www.drillplan.slb.com/trajectory.schema.json",
	"$schema": "http://json-schema.org/draft-07/schema#",
	"title": "Trajectory Data",
	"description": "A representation of raw trajectory. Aea input type name: trajectory_design-v1",
	"type": "object",
	"properties": {
		"id": {
			"type": "string"
		},
		"stations": {
			"uniqueItems": false,
			"type": "array",
			"items": {
				"$ref": "#/definitions/StationDto"
			}
		}
	},
	"definitions": {
		"StationDto": {
			"type": "object",
			"properties": {
				"measured_depth": {
					"format": "double",
					"type": "number",
					"description": "The measured depth (StandardDepthIndex,meter,m)."
				},
				"inclination": {
					"format": "double",
					"type": "number",
					"description": "The inclination (PlaneAngle,radian,rad)."
				},
				"azimuth": {
					"format": "double",
					"type": "number",
					"description": "The azimuth (PlaneAngle,radian,rad)."
				},
				"true_vertical_depth": {
					"format": "double",
					"type": "number",
					"description": "The true vertical depth (StandardDepthIndex,meter,m)."
				}
			}
		}
	}
}