action o2_transit { label: "Transit between basic residential units" description: "Get count of objects that were moving between basic residential units or objects that were visiting these basic residential units. Specific object's occurence type in the base residential unit can be requested. If none occurence type is present in the request or both occurence types are zero, the result will be aggregation of all types of occurence for given base residential units. More about base residential units can be found at https://www.czso.cz/csu/rso/zsj_rso (czech)." provider: o2 method: GET path: "/transit/{from}/{to}" encoding: json input: { type: "object" properties: { from: { type: "string" } fromType: { type: "string" } to: { type: "string" } toType: { type: "string" } uniques: { type: "string" } } required: ["from", "to", "uniques"] additionalProperties: false } output: { type: "object" additionalProperties: true } }